Durante a execução, sugiro que você receba:
ps -fLu mysql
Sugiro tentar fazer strace
no processo mysqld_safe para ver o que está esperando para sair. É possível que esteja aguardando um processo filho para retornar o controle para sair.
Eu configurei um servidor Ubuntu e queria instalar o MySQL 5.5. Eu tenho seguido estas etapas de documentação do MySQL .
Eu tenho libaio dev
instalado. Tudo correu bem até que eu corri
bin/mysqld_safe --user=mysql &
gera o seguinte e mantém o prompt.
111130 12:57:44 mysqld_safe Logging to '/usr/local/mysql/data/host_name.err'.
111130 12:57:44 mysqld_safe Iniciando o daemon mysqld com bancos de dados de / usr / local / mysql / data
Ocorre em um problema e nunca retorna ao shell. A saída de mysqld_safe
está sendo registrada em /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)
já existem /tmp/mysql.sock em [mysqld]
e [client]
, então adicionei [mysqld]
datadir =/usr/local/mysql/data
mas ainda recebendo o mesmo problema O que eu sinto falta aqui?
Obrigado por ler isto e por ajudar
Durante a execução, sugiro que você receba:
ps -fLu mysql
Sugiro tentar fazer strace
no processo mysqld_safe para ver o que está esperando para sair. É possível que esteja aguardando um processo filho para retornar o controle para sair.
Tags mysql installation ubuntu