首 页 行业热点 新车 试驾评测 养车用车 车型库

linux中如何查看mysql配置?

发布网友 发布时间:2022-04-20 13:59

我来回答

2个回答

热心网友 时间:2024-07-15 05:08

  1.linux下查看mysql的配置文件
  [root@localhost ~]# vi /etc/my.cnf
  2.查看mysql端口
  [root@localhost ~]# vi /etc/my.cnf
  在mysql的配置文件可以查看到端口port=3306

热心网友 时间:2024-07-15 05:08

查看方法如下:
1、linux下查看mysql的配置文件

[root@localhost ~]# vi /etc/my.cnf
查看mysql是否启动

2、mysql 的守护进程是mysqld
[root@localhost ~]# service mysqld start
启动
MySQL:
可以看看服务是否已经添加到linux上
[root@localhost ~]# chkconfig --list mysqld
mysqld
0:关闭 1:关闭
2:关闭 3:关闭
4:关闭 5:启用 6:关闭
3、[root@localhost ~]#
如果没有,先添加,用chkconfig --add mysqld
然后在3 5级别上设定服务为on
chkconfig --level 35 mysqld on
然后service start一下;
4、一旦启动了服务,可以这样检查服务器是否在运行
[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 ~]#

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com