문제 Ubuntu 10.04 서버에 MySQL 5.5 수동 설치, "/tmp/mysql.sock"에 관한 오류


0

나는 우분투 서버를 설치했고 MySQL 5.5를 설치하려고했다. 나는 이것들을 따라왔다. MySQL 문서 단계.

나는 가지고있다 libaio dev 설치. 내가 달릴 때까지 모든 것이 잘되었다.

bin/mysqld_safe --user=mysql &

다음을 출력하고 프롬프트를 유지합니다.

111130 12:57:44 mysqld_safe Logging to '/usr/local/mysql/data/host_name.err'.

111130 12:57:44 mysqld_safe / usr / local / mysql / data의 데이터베이스로 mysqld 데몬 시작하기

문제가 생겨서 쉘로 돌아 가지 않습니다. 의 출력 mysqld_safe 님에게 로깅 중입니다. /usr/local/mysql/data/host_name.err.

    I    /usr/local/mysql/data/loft1551.host_name.err                                           Row 29   Col 1    1:00  Ctrl-K H for help
    111130 12:57:44 InnoDB: Completed initialization of buffer pool
    InnoDB: The first specified data file ./ibdata1 did not exist: 
    InnoDB: a new database to be created!
    111130 12:57:44  InnoDB: Setting file ./ibdata1 size to 10 MB
    InnoDB: Database physically writes the file full: wait...
    111130 12:57:45  InnoDB: Log file ./ib_logfile0 did not exist: new to be created
    InnoDB: Setting log file ./ib_logfile0 size to 5 MB
    InnoDB: Database physically writes the file full: wait...
    111130 12:57:45  InnoDB: Log file ./ib_logfile1 did not exist: new to be created
    InnoDB: Setting log file ./ib_logfile1 size to 5 MB
    InnoDB: Database physically writes the file full: wait...
    InnoDB: Doublewrite buffer not found: creating new
    InnoDB: Doublewrite buffer created
    InnoDB: 127 rollback segment(s) active.
    InnoDB: Creating foreign key constraint system tables
    InnoDB: Foreign key constraint system tables created 
    111130 12:57:46  InnoDB: Waiting for the background threads to start
    111130 12:57:47 InnoDB: 1.1.8 started; log sequence number 0
    111130 12:57:48 [Note] Event Scheduler: Loaded 0 events
    111130 12:57:48 [Note] /usr/local/mysql/bin/mysqld: ready for connections.
    Version: '5.5.17-log'  socket: '/tmp/mysql.sock'  port: 3306  MySQL Community Server (GPL)

이미 /tmp/mysql.sock이 있습니다. [mysqld][client] 그래서 나는 아래에 추가했다. [mysqld]

datadir         =/usr/local/mysql/data

여전히 동일한 문제가 발생합니다. 내가 여기서 무엇을 놓치고 있니?

이 책을 읽고 도와 주셔서 감사합니다.

답변:


0

그것이 실행하는 동안 나는 얻는 것이 좋습니다 :

ps -fLu mysql

그리고 나는하려고하는 것이 좋습니다. strace mysqld_safe 프로세스가 종료 대기중인 것을 확인한다. 자식 프로세스에서 제어권을 종료 할 때까지 기다리는 것이 가능할 수 있습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.