linux – 更改MySQL的启动参数

前端之家收集整理的这篇文章主要介绍了linux – 更改MySQL的启动参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要从 MySQL启动参数中删除skip-networking

我在VPS上在Centos上的Linux上运行MysqL

有人可以告诉新手如何做到这一点?

我想要启动和停止MysqL服务器,我必须做这样的事情
/etc/init.d/MysqLd停止
/etc/init.d/MysqLd start

# ps -ef|grep 'MysqL'  
root     11331 20220  0 10:53 pts/0    00:00:00 grep MysqL  
root     32452     1  0 Apr02 ?        00:00:00 /bin/sh /usr/bin/MysqLd_safe --skip-grant-tables --skip-networking  
MysqL    32504 32452  0 Apr02 ?        00:00:18 /usr/libexec/MysqLd --basedir=/usr --datadir=/var/lib/MysqL --user=MysqL --pid-file=/var/run/MysqLd/MysqLd.pid --skip-external-locking --socket=/var/lib/MysqL/MysqL.sock --skip-grant-tables --skip-networking

解决方法

打开/etc/init.d/MysqLd脚本,找到–skip-networking参数并将其删除.
原文链接:https://www.f2er.com/linux/398661.html

猜你在找的Linux相关文章