博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos mysql 修改端口
阅读量:5298 次
发布时间:2019-06-14

本文共 1262 字,大约阅读时间需要 4 分钟。

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 /var/lib/mysql

130823 17:21:14 [Warning] '--default-character-set' is deprecated and will be removed in a future release. Please use '--character-set-server' instead.
130823 17:21:14  InnoDB: Initializing buffer pool, size = 8.0M
130823 17:21:14  InnoDB: Completed initialization of buffer pool
130823 17:21:14  InnoDB: Started; log sequence number 0 44233
130823 17:21:14 [ERROR] Can't start server: Bind on TCP/IP port: Permission denied
130823 17:21:14 [ERROR] Do you already have another mysqld server running on port: 8060 ?
130823 17:21:14 [ERROR] Aborting

130823 17:21:14  InnoDB: Starting shutdown...

130823 17:21:19  InnoDB: Shutdown completed; log sequence number 0 44233
130823 17:21:19 [Note] /usr/libexec/mysqld: Shutdown complete

 

解决如下:

1.  防火墙问题

vi /etc/sysconfig/iptables

添加如下行:

-A INPUT -m state --state NEW -m tcp -p tcp --dport 8060 -j ACCEPT

 

2. SELinux问题

方法一: 不需要重启:

 [root@dytl05 ~]# setenforce 0

 方法二:需要重启Linux:
vi /etc/selinux/config

SELINUX=disabled

转载于:https://www.cnblogs.com/MDK-L/p/4494821.html

你可能感兴趣的文章
Sprint阶段测试评分总结
查看>>
sqlite3经常使用命令&语法
查看>>
linux下编译openjdk8
查看>>
【python】--迭代器生成器装饰器
查看>>
Pow(x, n)
查看>>
安卓当中的线程和每秒刷一次
查看>>
每日一库:Modernizr.js,es5-shim.js,es5-safe.js
查看>>
ajax连接服务器框架
查看>>
wpf样式绑定 行为绑定 事件关联 路由事件实例
查看>>
利用maven管理项目之POM文件配置
查看>>
FUSE-用户空间文件系统
查看>>
TCL:表格(xls)中写入数据
查看>>
Oracle事务
查看>>
String类中的equals方法总结(转载)
查看>>
AVL数
查看>>
属性动画
查看>>
标识符
查看>>
路由跟踪工具0trace
查看>>
给大家分享一张CSS选择器优选级图谱 !
查看>>
Win7中不能调试windows service
查看>>