Fork me on GitHub
摘要: 1、查看防火墙状态 firewall-cmd --state 2、停止firewall systemctl stop firewalld.service 3、禁止firewall开机启动 systemctl disable firewalld.service 阅读全文
posted @ 2020-07-17 11:08 龙凌云端 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 命令依次如下: mysql -u root -p use mysql; select host,user,password from user; grant all privileges on *.* to root@'%' identified by "password"; flush privi 阅读全文
posted @ 2020-07-17 11:06 龙凌云端 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 安装 MySQL 过程中,执行安装命令报错。 1、安装命令 ./scripts/mysql_install_db --user=mysql --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --pid-file=/usr/local 阅读全文
posted @ 2020-07-17 11:01 龙凌云端 阅读(608) 评论(0) 推荐(0) 编辑
摘要: 安装完 MySQL,启动服务报错。 1、启动命令 service mysql start 2、报错信息 2019-01-31 17:17:39 1721 [ERROR] Can't start server : Bind on unix socket: Permission denied 2019- 阅读全文
posted @ 2020-07-17 10:58 龙凌云端 阅读(2547) 评论(0) 推荐(1) 编辑
摘要: 安装 MySQL 完成并启动后,执行匿名用户登录语句报错。 1、匿名用户登录语句 mysql -ux3 2、报错信息 ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2 阅读全文
posted @ 2020-07-17 10:50 龙凌云端 阅读(420) 评论(0) 推荐(0) 编辑
摘要: error while loading shared libraries: libnuma.so.1: cannot open shared object file: No such file or directory 在CentOS 7.6 操作系统的机器上安装 MySQL 过程中,执行安装命令报 阅读全文
posted @ 2020-07-17 10:43 龙凌云端 阅读(2120) 评论(0) 推荐(1) 编辑