MYSQL Daemon Failed to Start

General support questions
Post Reply
Utsav
Posts: 13
Joined: 2016/04/16 16:46:13

MYSQL Daemon Failed to Start

Post by Utsav » 2018/06/08 21:26:57

service mysql start
mysql: unrecognized service
-bash-4.1# service mysqld start
MySQL Daemon failed to start.
Starting mysqld: [FAILED]
-bash-4.1#

Log File:

Code: Select all

tail -f /var/log/mysqld.log
/usr/libexec/mysqld(trx_commit_off_kernel+0x1d9) [0x7db179]
/usr/libexec/mysqld(trx_finish_rollback_off_kernel+0x48) [0x7d3b58]
/usr/libexec/mysqld() [0x7a1f7a]
/usr/libexec/mysqld(que_run_threads+0x1f4) [0x7a21d4]
/usr/libexec/mysqld(trx_rollback_or_clean_all_without_sess+0x33d) [0x7d4c2d]
/lib64/libpthread.so.0() [0x3a6fc079d1]
/lib64/libc.so.6(clone+0x6d) [0x3a6f8e886d]
The manual page at http://dev.mysql.com/doc/mysql/en/crashing.html contains
information that should help you find out what is causing the crash.
180608 16:23:57 mysqld_safe mysqld from pid file /var/run/mysqld/mysqld.pid ended


nupurpriya
Posts: 86
Joined: 2016/10/14 12:07:18

Re: MYSQL Daemon Failed to Start

Post by nupurpriya » 2018/06/13 09:36:58

mysql service is now known as mariadb.
Try using "service mariadb start"

MariaDB is a fork of the original MySQL database.

From our point of view, only the package name is changed. MariaDB is still MySQL, and all the mysql command line utilities are still exactly named the same including the command called mysql.

User avatar
avij
Retired Moderator
Posts: 3046
Joined: 2010/12/01 19:25:52
Location: Helsinki, Finland
Contact:

Re: MYSQL Daemon Failed to Start

Post by avij » 2018/06/13 11:04:21

The above message is incorrect, CentOS 6 still ships mysql.

Do you have the latest mysql-server package installed? What does rpm -q mysql-server output?

That tail -f only displayed the last 10 lines. Please provide the full output.

Post Reply