Debug di un server in esecuzione (su Linux)

Se il server mysqld si arresta, è possibile eseguire il debug per identificare il problema.

E' preferibile che il server sia compilato per il debug, ma non è strettamente necessario:

configure --with-debug --with-valgrind
make

Per sapere cosa sta facendo il server:

  • Conoscere il numero del processo di mysqld
ps -edalf | grep mysqld
  • Allegare il processo e ottenere una back trace:
gdb -p 'pid di mysqld' percorso-di-mysqld
il thread applica la back trace

Commenti

Sto caricando i commenti......
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.