openSUSE服务MySQL停止不起作用


0

我不知道我需要做什么,如果有的话。使用CentOS时,我运行服务 mysql stop,它会停止MySQL。

在openSUSE studio上,当我运行相同的命令时,它不起作用。

Answers:


0

解决您的问题的一个方法是将mysql设置为服务。在mysql安装tarball中,应该有一个名为的脚本 mysql-server (或类似的东西)。复制到 /etc/init.d 并命名 mysql (您可能需要对其进行编辑,以便mysql用户与您在系统上设置的用户相同,并且mysql的路径与系统上的路径相同)。之后运行以下命令:

# chkconfig --add mysql
# chkconfig mysql on

然后,您就可以使用。来管理mysql service 命令例如

service mysql start
service mysql stop
service mysql status

希望这可以帮助!

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.