service mysqld start
me dá:
Starting mysqld (via systemctl): Job failed. See system logs and 'systemctl status' for details.
[FAILED]
O log de erros informa:
110913 05:50:44 mysqld_safe Starting mysqld daemon with databases from /home/mysql/prod
110913 5:50:44 [Warning] Can't create test file /home/mysql/prod/myhostname.lower-test
110913 5:50:44 [Warning] Can't create test file /home/mysql/prod/myhostname.lower-test
110913 5:50:44 [Note] Plugin 'FEDERATED' is disabled.
110913 5:50:44 InnoDB: The InnoDB memory heap is disabled
110913 5:50:44 InnoDB: Mutexes and rw_locks use GCC atomic builtins
110913 5:50:44 InnoDB: Compressed tables use zlib 1.2.5
110913 5:50:44 InnoDB: Using Linux native AIO
110913 5:50:44 InnoDB: Initializing buffer pool, size = 16.0M
110913 5:50:44 InnoDB: Completed initialization of buffer pool
110913 5:50:44 InnoDB: Operating system error number 13 in a file operation.
InnoDB: The error means mysqld does not have the access rights to
InnoDB: the directory.
InnoDB: File name /home/mysql/prod/ibdata1
InnoDB: File operation call: 'open'.
InnoDB: Cannot continue operation.
110913 05:50:44 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended
Oh, erro 13, então é um problema de permissões, certo?
chown -R mysql:mysql /home/mysql/prod
Ainda não será iniciado ... vamos tentar isto:
/usr/libexec/mysqld --console --log-warnings --basedir=/usr --datadir=/home/mysql/prod --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --socket=/var/lib/mysql/mysql.sock
Ok, então isso começa bem (eu consigo logar usando mysql -u root -p
), mas eu nem sei o que está fazendo, certamente não é gerenciado pelo systemctl .. vamos ter certeza que o mysql é um usuário:
# grep 'mysql' /etc/passwd
mysql:stuff:stuff:MySQL Server:/var/lib/mysql:/bin/bash
Meu my.cnf, um pouco abreviado (eu tentei algumas variações do abaixo):
[client]
#password = your_password
port = 3306
socket = /var/lib/mysql/mysql.sock
[mysqld]
user = mysql
port = 3306
basedir = /usr
log_warnings = 1
datadir = /home/mysql/prod
socket = /var/lib/mysql/mysql.sock
log-error = /var/log/mysql.log
innodb_data_home_dir = /home/mysql/prod
innodb_data_file_path = ibdata1:10M:autoextend
#innodb_doublewrite = on
#innodb_log_group_home_dir = /home/mysql/prod
Eu sou uma espécie de perda aqui .. alguém pode me deixar uma linha?
# ls -lah / | grep 'home'
drwxr-xr-x. 6 root root 4.0K Aug 15 12:20 home
# ls -lah /home | grep 'mysql'
drwxr-xr-x. 6 mysql mysql 4.0K Sep 8 06:14 mysql
# ls -lah /home/mysql/prod
drwxr-x---. 2 mysql mysql 4.0K Sep 14 2009 bugs
-rw-r--r--. 1 mysql mysql 18M Sep 13 06:17 ibdata1
-rw-r--r--. 1 mysql mysql 5.0M Sep 13 06:17 ib_logfile0
-rw-r--r--. 1 mysql mysql 5.0M Sep 13 05:23 ib_logfile1
(removeu algumas coisas acima para privacidade)