首页 > 数据库 > MySQL > 正文

centos离线安装mysql问题记录

2024-07-24 12:59:59
字体:
来源:转载
供稿:网友

使用MySQL5.6离线二进制安装包安装在成功执行

./scripts/mysql_install_db --user=mysql --basedir=/opt/mysql --datadir=/opt/mysql/data --socket=/tmp/mysql.sock

之后, 如果./bin/mysql_secure_installation提示总提示.sock找不到的问题时,需要尝试如下过程:

1. 进入mysql根目录执行#chown -R root .#chown -R mysql ./data2. 进入安全模式,设置数据库访问权限#/etc/init.d/mysqld stop#mysqld_safe --user=mysql --skip-grant-tables --skip-networking &#mysql -u root>FLUSH PRIVILEGES;>UPDATE user SET PassWord=PASSWORD('newpassword') where USER='root';>UPDATE user SET authentication_string=PASSWORD('newpassword') where USER='root';>FLUSH PRIVILEGES;>exit#service mysqld restart


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表