在CentOS上安装MySQL的详细步骤如下:
1、下载并安装MySQL官方的Yum Repository
wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm sudo rpm -ivh mysql57-community-release-el7-8.noarch.rpm
2、导入GPG密钥(如果需要)
rpm --import https://repo.mysql.com/RPM-GPG-KEY-mysql-2022
3、禁用MariaDB存储库(如果已安装)
sudo systemctl stop mariadb sudo systemctl disable mariadb sudo yum remove mariadb-libs sudo yum autoremove
4、安装MySQL服务器
sudo yum install mysql-community-server
5、启动MySQL服务
sudo systemctl start mysqld
6、获取临时密码
sudo grep 'temporary password' /var/log/mysqld.log
7、登录MySQL并修改密码
mysql -uroot -p ALTER USER 'root'@'localhost' IDENTIFIED BY 'New_password';
8、授权远程访问
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'New_password' WITH GRANT OPTION; mysql> FLUSH PRIVILEGES;
9、配置防火墙以允许MySQL端口
sudo firewall-cmd --zone=public --add-port=3306/tcp --permanent sudo firewall-cmd --reload
10、更改MySQL编码设置(可选)
编辑my.cnf
文件,添加以下内容:
[mysqld] character-set-server=utf8mb4 collation-server=utf8mb4_unicode_ci
然后重启MySQL服务:
sudo systemctl restart mysqld
通过以上步骤,您可以在CentOS上成功安装并配置MySQL,如果在安装过程中遇到任何问题,可以参考官方文档或社区论坛寻求帮助。
各位小伙伴们,我刚刚为大家分享了有关“centeros安装mysql”的知识,希望对你们有所帮助。如果您还有其他相关问题需要解决,欢迎随时提出哦!
原创文章,作者:K-seo,如若转载,请注明出处:https://www.kdun.cn/ask/781343.html