日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營銷解決方案
CentOS安裝MariaDB數(shù)據(jù)庫(MySQL的分支)

由于mysql已經(jīng)有閉源的趨勢,所以大部分系統(tǒng)已經(jīng)不建議使用MySQL,Mariadb是MySQL之父創(chuàng)建的一個(gè)MySQL分支項(xiàng)目,使用起來幾乎一模一樣。

1.centos安裝MariaDB

# yum install mariadb-server mariadb-client

2.運(yùn)行數(shù)據(jù)庫

# systemctl start mariadb

3.進(jìn)入數(shù)據(jù)庫并創(chuàng)建一個(gè)production數(shù)據(jù)庫

# mysql 
# MariaDB [(none)]> create database production;
# MariaDB [(none)]> use production;
# MariaDB [(none)]> flush privileges;

4.為production數(shù)據(jù)庫創(chuàng)建一個(gè)遠(yuǎn)程登陸的用戶

# MariaDB [(none)]> create user 'test1'@'%' identified by 'test1';
# MariaDB [(none)]> grant all privileges on production.* to test1 identified  by 'test1';
# MariaDB [(none)]> flush privileges;

5.使用test1用戶連接數(shù)據(jù)庫

# mysql -u test1 -p
Enter password: test1

6.登陸成功!

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 214
Server version: 5.5.52-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]>

當(dāng)前名稱:CentOS安裝MariaDB數(shù)據(jù)庫(MySQL的分支)
文章源于:http://www.5511xx.com/article/coocojo.html