码迷,mamicode.com
首页 > 数据库 > 详细

Centos7下安装Mysql(阿里云)

时间:2020-06-28 15:09:58      阅读:80      评论:0      收藏:0      [点我收藏+]

标签:tables   生成   配置文件   general   wget   gre   保存   yum   ext   

Centos下安装mysql

 

先写个坑

centos7自带的是MariaDB,而不是MySQL,所以执行yum install mysql-server时会报错如下

No package mysql-server available.
Error: Nothing to do

解决方法:添加mysql社区repo即可。

依次执行
wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
rpm -ivh mysql-community-release-el7-5.noarch.rpm
即可正常安装mysql

正式安装

 

yum install mysql-server

安装完以后运行如下命令:

// 设置开机启动
systemctl start mysqld.service
// 查看运行状态
systemctl status mysqld.service
// 进入mysql
mysql
// 修改root密码
update mysql.user set authentication_string=password(‘123456‘) where user=‘root‘;
(如果安装mysql时自动生成了密码,那么可以通过 grep "password" /var/log/mysqld.log 查看自动生成的密码)
// 开启远程访问权限(看你需不需要,远程登录的密码可以和用户密码不一样)
grant all privileges on *.* to ‘root‘@‘%‘ identified by ‘xxx...‘ with grant option;
// 刷新立即生效
flush privileges;
quit

然后修改一下配置文件,(新增一些)

[client]
default-character-set=utf8
...
[mysqld]
skip-grant-tables
character_set_server=utf8
collation-server=utf8_general_ci

保存退出后重启一下mysql服务:

service mysqld restart

大功告成。

Centos7下安装Mysql(阿里云)

标签:tables   生成   配置文件   general   wget   gre   保存   yum   ext   

原文地址:https://www.cnblogs.com/Ishtarin/p/13202666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!