当前位置:首页 > 美丽人生 > 学习成长 > 正文内容

Centos 安装 MariaDB Ver 10.8.6

RonWang3年前 (2020-11-21)学习成长460

Install MariaDB 10.8 on CentOS 8 These are the ideal steps you’ll go through when installing MariaDB 10.8 on CentOS 8 server. 

MariaDB 10.8 install

Step 1: Update System 

If you don’t have any critical services running in Production on the server, update the system before you begin installation of MariaDB on CentOS 8.

sudo yum update  -y

Step 2: Add MariaDB 10.8 repository to CentOS 8

We now need to add the MariaDB yum repository for our CPU architecture. This guide will cover adding repository for a x86_64 CPU machine.

curl -LsS -O https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
sudo bash mariadb_repo_setup --mariadb-server-version=10.8

Step 3: Install MariaDB 10.8 repository to CentOS 8

After adding Yum repository, you can proceed to install MariaDB repository to CentOS 8 straight away.

sudo yum install MariaDB-server MariaDB-client MariaDB-backup -y

When prompted, press y to accept installation:

Start and enable MariaDB service

sudo systemctl enable --now mariadb

Step 4: Secure MariaDB Database Server

sudo mariadb-secure-installation

Test access to database shell:

$ mysql -u root -p
$ Create datebase eshopex;
$ SELECT user, host FROM mysql.user;

The ending install process.You can keep going next work.

版权声明:本文为原创文章,版权归donstudio所有,欢迎分享本文,转载请保留出处!

本文链接:http://www.donstudio.cn/?id=152

标签: 服务器

相关文章

Centos服务器PHP7.X版本的安装与更新

Centos服务器PHP7.X版本的安装与更新

运行服务器WEB时,有些系统对PHP的版本要求比较新,所有本文将特别介绍如何升级和安装新版本的PHP系统。Centos服务器的Nginx,MySQL(MariaDB)的部分参照《CentOS 7.9...

Centos Install MemCached, Apcu and OpCache

Centos Install MemCached, Apcu and OpCache

This section provides instructions to install memcached on CentOS and Ubuntu. For additional informa...

Centos Install OSCommerce 4.0

Centos Install OSCommerce 4.0

osCommerce is a Free shopping cart and open source Ecommerce software. You can choose to host you...

阿里云服务器的环境搭建与调试

阿里云服务器的环境搭建与调试

从阿里云产品发布开始便一直在使用ECM云服务器,但是之前多使用的是Windows系统,后来摸索开始挑战自己使用CentOS系统,靠着几行程序和网上各位大咖的教程和分享,竟然让使用CentOS服务器近1...

Centos服务器挂载硬盘

Centos服务器挂载硬盘

1. 查看服务器上未挂载的磁盘(磁盘有普通磁盘,高效磁盘,SSD磁盘fdisk -l2. 磁盘分区(分区有主分区,扩展 分区,逻辑分区)fdisk /dev/vdbn->p-...