Não é possível iniciar o servidor MySQL na instalação do MAMP fresco

2

Estou usando o Mac OS X 10.6.2 no meu Macbook Pro.

Eu posso fazer com que o servidor apache seja iniciado, mas não o servidor mysql, tanto nas portas default como no padrão MAMP. Quando tento ir para a minha página inicial, recebo a mensagem "Erro: Não foi possível conectar ao servidor MySQL!" . Aqui está o que está no meu log de erro do mysql:

00513 02:00:07 mysqld_safe mysqld from pid file /Applications/MAMP/tmp/mysql/mysql.pid ended
100513 02:00:16 mysqld_safe Starting mysqld daemon with databases from /Applications/MAMP/db/mysql
100513 2:00:16 [Warning] The syntax '--log_slow_queries' is deprecated and will be removed in a future release. Please use '--slow_query_log'/'--slow_query_log_file' instead.
100513 2:00:16 [Warning] You have forced lower_case_table_names to 0 through a command-line option, even though your file system '/Applications/MAMP/db/mysql/' is case insensitive. This means that you can corrupt a MyISAM table by accessing it with different cases. You should consider changing lower_case_table_names to 1 or 2
100513 2:00:16 [Warning] One can only use the --user switch if running as root
100513 2:00:16 [Note] Plugin 'FEDERATED' is disabled.
100513 2:00:16 [Note] Plugin 'ndbcluster' is disabled.
InnoDB: Error: log file /usr/local/mysql/data/ib_logfile0 is of different size 0 5242880 bytes
InnoDB: than specified in the .cnf file 0 16777216 bytes!
100513 2:00:16 [ERROR] Plugin 'InnoDB' init function returned error.
100513 2:00:16 [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed.
100513 2:00:16 [ERROR] /Applications/MAMP/Library/libexec/mysqld: unknown option '--skip-bdb'
100513 2:00:16 [ERROR] Aborting
100513 2:00:16 [Note] /Applications/MAMP/Library/libexec/mysqld: Shutdown complete
100513 02:00:16 mysqld_safe mysqld from pid file /Applications/MAMP/tmp/mysql/mysql.pid ended

Algumas coisas:

1) Há um monte de diferentes arquivos .cnf que vêm com MAMP (meu-enorme, meu-médio, etc) ... como posso saber qual deles está sendo realmente usado?
2) Eu apaguei o ib_logfile0 e ib_logfile1 como recomendado por outro post no serverfault, e depois acabei com mais erros:

100519 16:01:30  InnoDB: Log file /usr/local/mysql/data/ib_logfile0 did not exist: new to be created
InnoDB: Setting log file /usr/local/mysql/data/ib_logfile0 size to 16 MB
InnoDB: Database physically writes the file full: wait...
100519 16:01:30  InnoDB: Log file /usr/local/mysql/data/ib_logfile1 did not exist: new to be created
InnoDB: Setting log file /usr/local/mysql/data/ib_logfile1 size to 16 MB
InnoDB: Database physically writes the file full: wait...
InnoDB: The log sequence number in ibdata files does not match
InnoDB: the log sequence number in the ib_logfiles!
100519 16:01:31  InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
100519 16:01:31  InnoDB: Started; log sequence number 0 44556
100519 16:01:31 [ERROR] /Applications/MAMP/Library/libexec/mysqld: unknown option '--skip-bdb'
100519 16:01:31 [ERROR] Aborting

E então eu peguei isso na próxima vez que tentei executá-lo:

InnoDB: Unable to lock /usr/local/mysql/data/ibdata1, error: 35
InnoDB: Check that you do not already have another mysqld process 
InnoDB: using the same InnoDB data or log files.

Desculpe por ser muita informação, mas não quero deixar nada de fora. Obrigado.

    
por alexpelan 19.05.2010 / 22:08

2 respostas

1

Isto definitivamente soa como se você tivesse muitos processos MySQL rodando e você só precisa sair de todos os processos do mysql e então iniciar o MySQL. Abra seu terminal e edite:

kill -s 15 'http://softwaregravy.wordpress.com/2010/10/16/ls-colors-for-mac/'

Confirme com:

ps -ef | grep mysql | grep -v grep

Se ainda houver processos que surgem, você precisará forçar a eliminação de todos os processos:

kill -s 9 'http://softwaregravy.wordpress.com/2010/10/16/ls-colors-for-mac/'

Confirme e inicie o MySQL através do painel de controle do MAMP, como faria normalmente.

    
por 31.07.2011 / 03:56
1

Eu estava tendo um problema parecido, e notei que após o reinício do computador, o mysql não inicializa, quando eu saí do MAMP e então tentei iniciá-lo novamente, somente o Apache inicia ...

A 'correção' que funcionou para mim é sair do MAMP , usar o monitor de atividades para encerrar todas as instâncias do 'mysqld' e depois reiniciar o MAMP.

    
por 04.04.2011 / 22:06