使用阿里云服务器时要安装mysql,发现无法通过yum -y install mysql-server来安装mysql。
作为刚入门的新手,只能通过找教程来解决问题。
环境:阿里云服务器,centos7.3
开始
1、阿里云服务器centos7默认安装了mariadb;
rpm -qa | grep -i mariadb
如果安装mysql则需要卸载,以免安装mysql是冲突。
rpm -e --nodeps mariadb-libs-5.5.52-1.el7.x86_64
2、安装mysql
在官网下载mysql版本(我这里安装的mysql版本是5.7)
wget https://dev.mysql.com/get/mysql57-community-release-el7-11.noarch.rpm
安装mysql源
yum -y install mysql57-community-release-el7-11.noarch.rpm
在线安装Mysql:
yum -y install mysql-community-release-el7-11.noarch.rpm
3、mysql安装完成
在/var/log/mysqld.log找到系统给的临时密码:
grep 'password' /var/log/mysqld.log
mysql5.7如果设置简单的密码则需要修改配置文件(密码策略)
策略:
0或LOW:Length
1或MEDIUM:Length; numeric, lowercase/uppercase, and special characters 长度; 数字,小写/大写和特殊字符
2或STRONG:Length; numeric, lowercase/uppercase, and special characters; dictionary file 长度; 数字,小写/大写和特殊字符; 字典文件
vim /etc/my.cnf
添加命令:validate_password_policy=0
以及配置mysql编码,在/etc/my.cn下添加:
character_set_server = utf8
init_connect = 'SET NAMES utf8'
重启mysql服务。
修改密码:
mysql -u root -p 进入mysql
alter user 'root'@'localhost' identified by 'testpassword';
然后,大功告成。