Linux平台下启动和关闭MySQ服务

网友投稿 269 2022-09-17

Linux平台下启动和关闭MySQ服务

在Linux平台下,可以采用如下命令查看MySQL服务的状态:

[root@localhost ~]# netstat -nlp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address               Foreign Address             State       PID/Program name    tcp        0      0 127.0.0.1:2208              0.0.0.0:*                   LISTEN      2182/./hpiod         tcp        0      0 0.0.0.0:5989                0.0.0.0:*                   LISTEN      2611/cimservermain  tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      2369/mysqld          tcp        0      0 0.0.0.0:111                 0.0.0.0:*                   LISTEN      1833/portmap         tcp        0      0 0.0.0.0:784                 0.0.0.0:*                   LISTEN      1874/rpc.statd       ... [root@localhost ~]#

其中端口号3306是MySQL服务器监听端口;

启动和关闭MySQL有两种方式

1)命令式方式

root@localhost sbin]# cd /usr/bin/ [root@localhost bin]# ./mysqld_safe & [1] 12788 [root@localhost bin]# 150507 01:25:46 mysqld_safe Logging to '/var/lib/mysql/localhost.localdomain.err'. 150507 01:25:47 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql[root@localhost bin]# mysqladmin -u root -p shutdown Enter password:  150507 01:26:48 mysqld_safe mysqld from pid file /var/lib/mysql/localhost.localdomain.pid ended [1]+  Done                    ./mysqld_safe [root@localhost bin]#

2)服务的方式

[root@localhost bin]# service mysql start Starting MySQL..                                           [  OK  ][root@localhost bin]# service mysql restart Shutting down MySQL..                                      [  OK  ] Starting MySQL..                                           [  OK  ][root@localhost bin]# service mysql stop Shutting down MySQL..                                      [  OK  ] [root@localhost bin]#

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:我学设计模式 之 代理模式
下一篇:顶尖文案TOPYS:当我们面对汉字时,面对的是一种感受 | TOPYS专访梅数植!
相关文章

 发表评论

暂时没有评论,来抢沙发吧~