O MySQL 5.6 Community Server falhou ao iniciar no CentOS 6

1

O MySQL 5.6 Community Server falhou ao iniciar no CentOS 6.

Antes, eu instalei com sucesso o servidor da comunidade mysql (file: mysql-community-release-el6-5.noarch.rpm) no meu CentOS 6, a fonte binária veio de link .

Eu fiz algumas alterações dentro da configuração /etc/my1.conf e do script de inicialização /etc/init.d/mysqld1, para alterar os dados, log e localização dos arquivos pid, por favor, encontre as seguintes alterações abaixo:

file: /etc/my1.conf
[mysqld]
innodb_buffer_pool_size = 128M
datadir=/opt/mysql/mysql1
socket=/opt/mysql/mysql1/mysql.sock
symbolic-links=0
sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES
[mysqld_safe]
log-error=/opt/mysql/log/mysqld1.log
pid-file=/opt/mysql/run/mysqld1.pid

file: /etc/init.d/mysqld1
datadir="/opt/mysql/mysql1"
socketfile="/opt/mysql/mysql1/mysql.sock"
errlogfile="/opt/mysql/log/mysqld1.log"
mypidfile="/opt/mysql/run/mysqld1.pid"
defaultfile="/etc/my1.cnf"
$exec --defaults-file="$defaultfile" \
  --datadir="$datadir" --socket="$socketfile" \
  --pid-file="$mypidfile" \
  --basedir=/usr --user=mysql >/dev/null 2>&1 &

E sempre falhava depois que eu fazia a inicialização

$ sudo service mysqld1 start
[sudo] password for beepcast:
141230 10:38:57 mysqld_safe Logging to '/opt/mysql/log/mysqld1.log'.
141230 10:38:57 mysqld_safe Starting mysqld daemon with databases from /opt/mysql/mysql1
... (hang)

Quando eu verifiquei o arquivo de log, ele não mostra nada de errado, por favor, encontrar o seguinte arquivo de log abaixo:

2014-12-30 10:38:57 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
2014-12-30 10:38:57 2674 [Note] Plugin 'FEDERATED' is disabled.
2014-12-30 10:38:57 2674 [Note] InnoDB: Using atomics to ref count buffer pool pages
2014-12-30 10:38:57 2674 [Note] InnoDB: The InnoDB memory heap is disabled
2014-12-30 10:38:57 2674 [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
2014-12-30 10:38:57 2674 [Note] InnoDB: Memory barrier is not used
2014-12-30 10:38:57 2674 [Note] InnoDB: Compressed tables use zlib 1.2.3
2014-12-30 10:38:57 2674 [Note] InnoDB: Using Linux native AIO
2014-12-30 10:38:57 2674 [Note] InnoDB: Not using CPU crc32 instructions
2014-12-30 10:38:57 2674 [Note] InnoDB: Initializing buffer pool, size = 128.0M
2014-12-30 10:38:57 2674 [Note] InnoDB: Completed initialization of buffer pool
2014-12-30 10:38:57 2674 [Note] InnoDB: Highest supported file format is Barracuda.
2014-12-30 10:38:59 2674 [Note] InnoDB: 128 rollback segment(s) are active.
2014-12-30 10:38:59 2674 [Note] InnoDB: Waiting for purge to start
2014-12-30 10:38:59 2674 [Note] InnoDB: 5.6.22 started; log sequence number 1626007
2014-12-30 10:38:59 2674 [Note] Server hostname (bind-address): '*'; port: 3306
2014-12-30 10:38:59 2674 [Note] IPv6 is available.
2014-12-30 10:38:59 2674 [Note]   - '::' resolves to '::';
2014-12-30 10:38:59 2674 [Note] Server socket created on IP: '::'.
2014-12-30 10:38:59 2674 [Note] Event Scheduler: Loaded 0 events
2014-12-30 10:38:59 2674 [Note] /usr/sbin/mysqld: ready for connections.
Version: '5.6.22'  socket: '/opt/mysql/mysql1/mysql.sock'  port: 3306  MySQL Community Server (GPL)

Eu não sei porque é que é assim? mas certamente o servidor mysql está rodando ok e a porta do listener está aberta.

    
por Benny Iskandar 30.12.2014 / 03:47

0 respostas