Hello! 欢迎来到小浪云!


vps服务器的centos如何启动mysql


avatar
小浪云 2024-06-09 40


VPS服务器centos中启动mysql服务的方法:1、打开centos终端;2、输入“service mysqld star”或者“/etc/init.d/mysqld start”命令启动mysql服务即可。

具体操作步骤:

1、在centos系统桌面中使用快捷键【Ctrl+Alt+T】打开centos终端命令行模式。

2、在centos终端命令行中输入以下命令启动mysql服务。

service mysqld star #启动mysql服务

#

/etc/init.d/mysqld start

相关操作命令

service mysqld stop #停止mysql服务

/etc/init.d/mysqld stop #停止mysql服务

#以下配置mysql的开机自动启动方式

chkconfig –add mysql

chkconfig mysqld on

相关阅读