CentOS 7 版本将MySQL数据库软件从默认的程序列表中移除,用mariadb代替了。所以要安装mysql有两种方法,一种是直接安装mariadb,另一种是从官网下载mysql手动安装
这里只介绍第二种方法。
一、系统环境
# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
二、官网下载安装mysql-server
# wget http://dev.mysql.com/get/mysql-community-release-el7-5.noarch.rpm
# rpm -ivh mysql-community-release-el7-5.noarch.rpm
# yum install mysql-community-server
安装成功后重启mysql服务。
# service mysqld restart
初次安装mysql,root账户没有密码。
# mysql -u root
设置密码
mysql> set password for 'root'@'localhost' =password('password');
三、配置mysql
- 编码
mysql配置文件为/etc/my.cnf
[mysql]
default-character-set =utf8
- 远程连接
create user 'username'@'%' identified by 'password';
grant all privileges on *.* to root@'%'identified by 'password';