美文网首页
linux修改mysql默认端口3306

linux修改mysql默认端口3306

作者: 最底层的技术渣 | 来源:发表于2019-04-27 22:45 被阅读0次

一、查看默认端口号

1、登录mysql

mysql -uroot -p

2、使用show global variables like 'port'; 命令查看端口号,

mysql> show global variables like 'port';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| port          | 3306  |
+---------------+-------+
1 row in set (0.00 sec)
mysql> 

3306即为端口号。

二、mysql端口号的修改

1、编辑/etc/my.cnf文件

vi /etc/my.cnf

2、添加

port=2032;

3、重启mysql

 /etc/init.d/mysqld restart
#   service mysqld restart

相关文章

网友评论

      本文标题:linux修改mysql默认端口3306

      本文链接:https://www.haomeiwen.com/subject/ryglnqtx.html