cent7.0 mysql 修改端口

  1. 如何查看mysql 默认端口号和修改端口号 2015-03-19 17:42:18
  2. 1. 登录mysql
  3. [[email protected] /]# mysql -u root -p
  4. Enter password:
  5. 2. 使用命令show global variables like ‘port‘;查看端口号
  6. mysql> show global variables like ‘port‘;
  7. +---------------+-------+
  8. | Variable_name | Value |
  9. +---------------+-------+
  10. | port | 3306 |
  11. +---------------+-------+
  12. 1 row in set (0.00 sec)
  13. 3. 修改端口,编辑/etc/my.cnf文件,早期版本有可能是my.conf文件名,增加端口参数,并且设定端口,注意该端口未被使用,保存退出。
  14. [[email protected] etc]# vi my.cnf
  15. [mysqld]
  16. port=3506
  17. datadir=/var/lib/mysql
  18. socket=/var/lib/mysql/mysql.sock
  19. user=mysql
  20. # Disabling symbolic-links is recommended to prevent assorted security risks
  21. symbolic-links=0
  22. [mysqld_safe]
  23. log-error=/var/log/mysqld.log
  24. pid-file=/var/run/mysqld/mysqld.pid
  25. "my.cnf" 11L, 261C written
  26. [[email protected] etc]#
  27. 4. 重新启动mysql
  28. [[email protected] ~]# /etc/init.d/mysqld restart
  29. Stopping mysqld: [ OK ]
  30. Starting mysqld: [ OK ]
  31. 5.再次登录后检查端口已修改为’3506’.
  32. [[email protected] etc]# mysql -u root -p
  33. Enter password:
  34. Welcome to the MySQL monitor. Commands end with ; or \g.
  35. Your MySQL connection id is 2
  36. Server version: 5.1.66 Source distribution
  37. Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
  38. Oracle is a registered trademark of Oracle Corporation and/or its
  39. affiliates. Other names may be trademarks of their respective
  40. owners.
  41. Type ‘help;‘ or ‘\h‘ for help. Type ‘\c‘ to clear the current input statement.
  42. mysql> show global variables like ‘port‘;
  43. +---------------+-------+
  44. | Variable_name | Value |
  45. +---------------+-------+
  46. | port | 3506 |
  47. +---------------+-------+
  48. 1 row in set (0.00 sec)
  49. mysql>
  50. 总结:注意修改的端口不要被占用,而且要有规划,不要轻意的总是调整数据库端口。还有就是安全保障,记得与负责网络的人提前通知,以免端口无法正常使用。
时间: 2024-10-27 05:59:02

cent7.0 mysql 修改端口的相关文章

mysql修改端口经验

mysql更改端口修改/etc/my.cnf添加port=3308修改后如下[mysqld]datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sockport=3308user=mysql# Disabling symbolic-links is recommended to prevent assorted security riskssymbolic-links=0default-character-set=utf8[mysqld_safe]

centos mysql 修改端口

http://blog.csdn.net/wobin/article/details/10266165 在CentOS上使用yum命令安装mysql后,使用默认端口3306能成功启动,但在/etc/my.cnf里更改端口,mysql启动不成功,后查阅相关资料总结如下: 这是更改端口后,进入/var/log/mysqld.log里摘取的启动失败相关日志: 130823 17:21:14 mysqld_safe Starting mysqld daemon with databases from /

有关WAMPSERVER 如何修改端口,MySQL数据库的修改

一.修改Apache的监听端口 1.在界面中选Apache,弹出隐藏菜单选项,打开配置文件 http.conf; 2.找到Listen 80 和 ServerName localhost:80; 3.将80改成8080(自己也可以设定别的不使用的端口,例如8000,801等)(!改的时候一定要 在8与0之间加入修改!);——共修改了4处 4.保存,重启所有服务(Restart All Server); 注:1.当WAMPServer的图标为绿色时是可以正常使用的 2.当图标为黄色时Apache中

linux的mysql修改默认端口3306

linux 修改mysql默认端口3306 cd /etc/mysql/my.cnf 修改两处 客户端的port=3306 和mysqld的服务器端口port=3306 [client] port=3306 [mysqld] port=3306 重启mysql服务器即可 sudo service mysql restart 原文地址:https://www.cnblogs.com/shigfdengys/p/12158272.html

Tomcat6.0常用修改操作汇总

1.修改端口Tomcat默认端口为8080,如果需要同时启动多个Tomcat服务,就需要修改新的Tomcat服务的端口以防止冲突:为了同时可以启动更多的Tomcat服务而让端口不冲突,约定下改端口的规范:如果想改为 8081,让如下3个端口分别+1如果想改为 8082,让如下3个端口分别+2 1.1.需要修改的文件:apache-tomcat-6.0.35 8081\conf\server.xml1.2.需要修改的3个端口分别为:8006,8081,8010 <?xml version="

MySQL 修改账号的IP限制条件

今天遇到一个需求:修改MySQL用户的权限,需要限制特定IP地址才能访问,第一次遇到这类需求,结果在测试过程,使用更新系统权限报发现出现了一些问题, 具体演示如下. 下面测试环境为MySQL 5.6.20. 如有其它版本与下面测试结果有出入,请以实际环境为准. 我们先创建一个测试用户LimitIP,只允许192.168段的IP地址访问,具体权限如下所示: mysql> GRANT SELECT ON MyDB.* TO [email protected]'192.168.%' IDENTIFIE

mysql 修改用户密码

修改mysql用户密码 目录 mysqladmin命令 UPDATE user 语句 SET PASSWORD 语句 root密码丢失的情况(待验证) mysqladmin命令(回目录) 格式如下(其中,USER为用户名,PASSWORD为新密码): mysqladmin -u USER -p password PASSWORD 该命令之后会提示输入原密码,输入正确后即可修改.例如,设置root用户的密码为123456,则 mysqladmin -u root -p password 12345

mysql修改完密码无法再次登陆

现象:修改完root密码之后,退出mysql,重启mysql服务,然后想用新密码登陆mysql,发现登不上去了. 一,碰到这种问题的原因是,在给用户改密码的时候没有使用password()函数对密码加密.如下: mysql> update user set password='[email protected]' where user='root';Query OK, 3 rows affected (0.00 sec)Rows matched: 3 Changed: 3 Warnings: 0

zabbix3.0监控--修改管理员(Admin)密码

1.进入zabbix数据库中 [email protected]:~# mysql -uroot -p Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g. Your MySQL connection id is 4646 Server version: 5.5.50-0ubuntu0.14.04.1 (Ubuntu) Copyright (c) 2000, 2016, Oracle and/or it