service mysql start 与systemctl start mysqld
时间: 2023-08-28 12:11:38 浏览: 208
启动mysql服务命令
"service mysql start" 和 "systemctl start mysqld" 都是用来启动 MySQL 服务的命令,但是它们在不同的操作系统或不同的 MySQL 版本上可能有所区别。
"service mysql start" 是在旧版本的 Linux 发行版上使用的命令,它通过运行 "/etc/init.d/mysql" 脚本来启动 MySQL 服务。
而 "systemctl start mysqld" 则是在较新版本的 Linux 发行版(如 CentOS 7+、Ubuntu 16.04+)上使用的命令,它使用 Systemd 系统管理器来启动 MySQL 服务。
如果你使用的是较新版本的 Linux 发行版,推荐使用 "systemctl start mysqld" 命令来启动 MySQL 服务。如果你使用的是旧版本的 Linux 发行版,可以尝试使用 "service mysql start" 命令来启动 MySQL 服务。
阅读全文