Nada. Pegue o bastão SIGKILL e prepare-se para uma recuperação de log.
Este é um servidor escravo. mysqladmin shutdown
trava em:
[Note] Event Scheduler: Purging the queue. 24 events
[Note] Slave I/O thread killed while reading event
[Note] Slave I/O thread exiting, read up to log 'mysql-bin.000878', position 848536790
então, pressionei Ctrl + C , e o terminal mostrou o seguinte aviso:
Warning; Aborted waiting on pid file: '/var/lib/mysql/x.pid' after 302 seconds
Os processos ainda existem:
root 9623 1 0 10:18 pts/8 00:00:00 /bin/sh /usr/bin/mysqld_safe --datadir=/var/lib/mysql --pid-file=/var/lib/mysql/x.pid
mysql 10357 9623 0 10:18 pts/8 00:00:06 /usr/sbin/mysqld --basedir=/usr --datadir=/var/lib/mysql --plugin-dir=/usr/lib64/mysql/plugin --user=mysql --log-error=/var/log/mysqld.log --open-files-limit=100000 --pid-file=/var/lib/mysql/x.pid --socket=/var/lib/mysql/mysql.sock
mas o arquivo de soquete está faltando:
ls: /var/lib/mysql/mysql.sock: No such file or directory
e não há nada escutando na porta 3306.
# netstat --inet -nlp | grep :3306
# lsof -i :3306
#
O envio de um sinal SIGTERM ( kill -15
) para o processo filho não funciona. O que posso fazer, mas kill -9
?
Tags mysql kill kill-process