MySQL falhou ao reiniciar no Ubuntu 16.04

7

Estou tentando reiniciar o MySQL depois de salvar um script. O erro indica que Job for mysql.service failed because the control process exited with error code. See "systemctl status mysql.service" and "journalctl -xe" for details.

Ao executar systemctl status mysql.service , aqui está o que recebo:

Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled)
   Active: activating (start-post) (Result: exit-code) since Isn 2016-09-26 17:15:28 MYT; 17s ago
  Process: 17478 ExecStart=/usr/sbin/mysqld (code=exited, status=1/FAILURE)
  Process: 17474 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCESS)
 Main PID: 17478 (code=exited, status=1/FAILURE);         : 17479 (mysql-systemd-s)
   CGroup: /system.slice/mysql.service
           └─control
             ├─17479 /bin/bash /usr/share/mysql/mysql-systemd-start post
             └─17516 sleep 1

Não sei por onde começar a corrigir isso.

Este é o script que eu salvei antes de reiniciar o mysql:

[mysqld]
innodb_rollback_on_timeout=1
innodb_lock_wait_timeout=600
max_connections=350
log-bin=mysql-bin
binlog-format = 'ROW'

A execução de journalctl -xe | tail -20 me dá isso:

Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.037709Z 0 [Warning] Changed limits: max_open_files: 1024 (requested 5000)
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.037798Z 0 [Warning] Changed limits: max_connections: 214 (requested 350)
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.037809Z 0 [Warning] Changed limits: table_open_cache: 400 (requested 2000)
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.187886Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.189296Z 0 [Note] /usr/sbin/mysqld (mysqld 5.7.15-0ubuntu0.16.04.1-log) starting as process 21937 ...
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.191216Z 0 [ERROR] You have enabled the binary log, but you haven't provided the mandatory server-id. Please refer to the proper server start-up parameters documentation
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.191242Z 0 [ERROR] Aborting
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.191255Z 0 [Note] Binlog end
Sep 26 17:46:29 guest mysqld[21937]: 2016-09-26T09:46:29.191300Z 0 [Note] /usr/sbin/mysqld: Shutdown complete
Sep 26 17:46:29 guest systemd[1]: mysql.service: Main process exited, code=exited, status=1/FAILURE
Sep 26 17:46:32 guest NetworkManager[878]: <info>  [1474883192.2910] device (eth0): Lowering IPv6 MTU (9000) to match device MTU (1500)

A execução de ulimit && ulimit -Sa me dá:

unlimited
core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 128071
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 128071
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited
    
por Edd 26.09.2016 / 11:28

4 respostas

3

Erro fatal:

MYQL está falhando ao iniciar porque, como indica a saída do Journalctl, but you haven't provided the mandatory server-id. Adiciona o id obrigatório como indicado no código abaixo.

/etc/mysql/mysql.conf.d/mysqld.cnf
Alterar de:

log-bin=mysql-bin
binlog-format = 'ROW'

Mude para:

server-id=master-01
log-bin=mysql-bin
binlog-format = 'ROW'

Isso fará com que o seu servidor funcione enquanto você endereça a formatação adequada do registro desejado.

avisos não fatais:

Para o limite de arquivos abertos do seu erro, você terá que diminuir a demanda na configuração que você editou ou aumentar os limites do sistema com:

/etc/security/limits.conf

* soft nofile [new number]
* hard nofile [new number]

A primeira coluna descreve a quem o limite deve ser aplicado. '' é um curinga, significando todos os usuários. Para aumentar os limites do root, você precisa inserir explicitamente 'root' em vez de ''.

Extraído de: link

    
por L. D. James 26.09.2016 / 13:02
0

Resolva o problema:

  1. Adicionando Swapfile
  2. Adicionando innodb_buffer_pool_size = 20M ao arquivo de configuração /etc/mysql/my.cnf , certificando-se de estar em um grupo
por Emma 22.11.2017 / 23:12
0

Obtive o mesmo erro, mas no meu caso, simplesmente o disco estava cheio. Certifique-se também de verificar isso.

df -h --total
    
por xinxin 19.01.2018 / 23:58
0

Meu problema é que o IP do host é alterado.

Então, edite o bind-address em /etc/mysql/my.cnf para o correto.

    
por osrpt 03.04.2018 / 04:25

Tags