码迷,mamicode.com
首页 > 数据库 > 详细

mysql

时间:2014-05-22 02:28:19      阅读:304      评论:0      收藏:0      [点我收藏+]

标签:des   style   c   tar   a   int   

mysql 的守护进程是mysqld

[root@localhost ~]# service mysqld start

启动 MySQL                         

你可以看看你的服务是否已经添加到linux

[root@localhost ~]# chkconfig --list mysqld

mysqld          0:关闭  1:关闭  2:关闭  3:关闭  4:关闭  5:启用  6:关闭

[root@localhost ~]#

如果没有,先添加,用chkconfig --add mysqld

然后在3 5级别上设定服务为on

chkconfig --level 35 mysqld on

然后service start一下;

一旦你启动了服务,可以这样检查服务器是否在运行

[root@localhost ~]# ps -el | grep mysqld

4 S     0  1796     1  0  85   0 -  1513 wait   ?        00:00:00 mysqld_safe

4 S    27  1856  1796  0  78   0 - 34055 -      ?        00:00:00 mysqld

[root@localhost ~]#

mysql -u {mysql-user} -p {mysql-password} -h {mysql-server}

[root@vps wwwintershanghaicom]#mysql -h localhost -u root  -p

Enter password: 

Hostname: vps.hyb.com

IP Address: xx.xx.xx.xx

mysql> describe LeaseInformation;

mysql,布布扣,bubuko.com

mysql

标签:des   style   c   tar   a   int   

原文地址:http://www.cnblogs.com/lindasunflower/p/3738645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!