Archlinux mysqld 无法启动

2021-11-17 00:00:00 mysql archlinux

Cat' 在我的 archlinux x64 上启动 mysqld.

Cat' launch mysqld on my archlinux x64.

Job for mysqld.service failed. See "systemctl status mysqld.service" and "journalctl -xe" for details.  

systemctl start mysqld
在日志中

mysqld.service - MariaDB database server
   Loaded: loaded (/usr/lib/systemd/system/mysqld.service; enabled; vendor preset: disabled)
   Active: activating (auto-restart) (Result: timeout) since Mon 2015-04-06 22:07:24 UTC; 9ms ago
  Process: 18077 ExecStart=/usr/bin/mysqld --pid-file=/run/mysqld/mysqld.pid (code=exited, status=1/FAILURE)
 Main PID: 18077 (code=exited, status=1/FAILURE)
   CGroup: /system.slice/mysqld.service
           `-control

Apr 06 22:07:24 atlas systemd[1]: Failed to start MariaDB database server.
Apr 06 22:07:24 atlas systemd[1]: Unit mysqld.service entered failed state.
Apr 06 22:07:24 atlas systemd[1]: mysqld.service failed.

我能做什么?谢谢!

推荐答案

你应该在启动服务之前输入这个命令

You should type this command before starting the service

mysql_install_db --user=mysql --basedir=/usr --datadir=/var/lib/mysql

ِ以后就可以定时启动服务了

ِAnd later you can start the service Regularly

对于一个会话:

systemctl start mysqld

OR 在启动时自动启用 <<(不推荐)

OR being enabled automatically on startup << (NOT RECOMMENDED)

systemctl enable mysqld

相关文章