centos7 安装MariaDB 10.6
2022/4/3 7:20:54
本文主要是介绍centos7 安装MariaDB 10.6,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
镜像下载、域名解析、时间同步请点击 阿里云开源镜像站
背景
centos7使用yum install mariadb-server命令安装的默认版本是5.5的,这是因为系统默认源只有5.5的版本,所以我们去增加一个10.6的源
增加源
去mariaDB官网找到对应的源
Download MariaDB Server - MariaDB.org
这是我选的源
复制这部分作为centos7的源
# MariaDB 10.6 CentOS repository list - created 2021-12-22 11:16 UTC # https://mariadb.org/download/ [mariadb] name = MariaDB baseurl = https://mirrors.aliyun.com/mariadb/yum/10.6/centos7-amd64 gpgkey=https://mirrors.aliyun.com/mariadb/yum/RPM-GPG-KEY-MariaDB gpgcheck=1
添加maridb源
vim /etc/yum.repos.d/MariaDB.repo
把刚在mariadb官网复制的源代码粘贴进去
安装
源的问题解决了,现在可以执行安装了,再次执行该命令就会发现安装的是10.6的版本了
yum install MariaDB-server MariaDB-client
配置 MariaDB
mariadb-secure-installation
Enter current password for root (enter for none): 输入当前的root密码(默认空),直接回车
Set root password? [Y/n] 设置新密码,y
Remove anonymous users? [Y/n] 移除匿名用户,y
Disallow root login remotely? [Y/n] 禁止root用户远程登录,y
Remove test database and access to it? [Y/n] 移除测试数据库,y
Reload privilege tables now? [Y/n] y
启动MariaDB
启动
systemctl start mariadb
设置开机自启
systemctl enable mariadb
配置文件位置:/etc/my.cnf
本文转自:https://blog.csdn.net/sqlquan/article/details/122093702
这篇关于centos7 安装MariaDB 10.6的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享