首页 > 数据库 > MySQL > 正文

linux下如何终止mysql服务

2024-07-24 12:33:27
字体:
来源:转载
供稿:网友

  linux下查看mysql服务的两种方式:
  方式一:
 
  [root@localhost bin]ps -ef|grep mysql
  方式二:
 
  [root@localhost bin]netstat -nlp
  linux下关闭停止mysql服务的两种方式:
  命令行方式:
 
  [root@localhost ~]mysqladmin -u root shutdown
  服务方式:
 
  [root@localhost ~]service mysql stop
  linux下启动mysql服务的两种方式:
  命令行方式:
 
  [root@localhost bin]cd /usr/bin
  [root@localhost bin]./mysqld_safe &
  服务方式:
 
  [root@localhost ~]service mysql start
  如果服务在启动状态,直接重启服务用以下命令:
  [root@localhost ~]service mysql restart
  以上就是关于“linux下如何停止mysql服务”这篇文章的内容,相信大家都有了一定的了解,希望小编分享的内容对大家有帮助。

(编辑:武林网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表