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

阿里云 CentOS7 安装MySQL (MariaDB)

时间:2020-02-12 18:18:31      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:blog   ase   socket   没有   data   初始   停止   install   switch   

自从 CentOS 7 开始,自带的数据库就变成 MariaDB 了,yum 安装之后的默认版本是 5.5

添加Maria源

添加并编辑文件

添加MariaDB源

vi /etc/yum.repos.d/MariaDB.repo

粘贴官方的或者阿里云的镜像:

[mariadb]
name = MariaDB
baseurl = http://yum.mariadb.org/10.3/centos7-amd64
gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB
gpgcheck=1
[mariadb]
name = MariaDB
baseurl = https://mirrors.aliyun.com/mariadb/yum/10.4/centos7-amd64/
gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB
gpgcheck=1

2,安装新版本的MariaDB

yum install mariadb mariadb-server

 

3,配置数据库

启动数据库

systemctl start mariadb.service

第一次安装,没有密码,直接进入数据库

mysql -u root

设置初始密码

mysql_secure_installation
[root]$ /usr/bin/mysql_secure_installation
#输入root(mysql)的密码。默认没有,直接回车
Enter current password for root (enter for none): 
#是否切换到unix套接字身份验证[Y/n]
Switch to unix_socket authentication [Y/n] n
#是否设置root密码
Change the root password? [Y/n]
#如果选Y,就输入2次密码
New password:
Re-enter new password:
#是否删除匿名用户?(就是空用户),建议删除
Remove anonymous users? [Y/n]
#是否不允许远程root登录
Disallow root login remotely? [Y/n] n
#是否删除test数据库
Remove test database and access to it? [Y/n] n
#是否加载权限使之生效
Reload privilege tables now? [Y/n] y

 

4,对数据库的其他操作

停止
systemctl stop mariadb.service
重启 systemctl restart mariadb.service
开机自启 systemctl enable mariadb.service

 

 

参考:https://blog.csdn.net/qq_34691713/article/details/83896662

           https://www.jianshu.com/p/e153aad8006b

阿里云 CentOS7 安装MySQL (MariaDB)

标签:blog   ase   socket   没有   data   初始   停止   install   switch   

原文地址:https://www.cnblogs.com/anloveslife/p/12299786.html

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