Centos 使用YUM安裝MariaDB

2021-07-09 13:12:17 字數 1589 閱讀 7795

[azureuser@mono etc]$ cd /etc/yum.repos

.d [azureuser@mono yum.repos

.d]$ vi mariadb.repo

拷貝以下內容:

gpgcheck=1如果是其他的作業系統,可以在這裡找到相關資訊。

[azureuser@mono yum.repos

.d]$ sudo yum -y install mariadb-client mariadb-server mariadb-devel

[azureuser@mono yum.repos

.d]$ sudo service mysql start

[azureuser@mono yum.repos

.d]$ mysqladmin -u root password 『passwd』

[azureuser@mono yum.repos.d]$ mysql -u root -p 

enter password:

welcome to the mariadb monitor. commands end

with ; or \g.

your mariadb connection id is

4 server version: 10.0.4-mariadb mariadb server

type

'help;'

or'\h'

for help. type

'\c'

to clear the current input statement.

mariadb [(none)]>grant all privileges on *.* to

'root'@'%' identified by 『passwd』 with grant option;

mariadb [(none)]> flush privileges;

第一句中」%「表示任何主機都可以遠端登入到該伺服器上訪問。如果要限制只有某台機器可以訪問,將其換成相應的ip即可,如:

grant

allprivileges

on *.* to root@"172.168.193.25"

identified

by"root";

用root帳號登入後,在/etc/my.cnf 中的[mysqld]後新增新增lower_case_table_names=1,重啟mysql服務,這時已設定成功:不區分表名的大小寫;

其中 0:區分大小寫,1:不區分大小寫

CentOS使用yum安裝mysql

1 檢視centos自帶mysql是否已安裝。輸入 yum list installed grep mysql 輸入 yum y remove mysql libs.x86 64,若有多個依賴檔案則依次解除安裝。當結果顯示為complete!即解除安裝完畢。輸入 yum list grep mysq...

Centos 使用YUM安裝MariaDB

1 在 etc yum.repos.d 下建立 mariadb.repo,內容如下 azureuser mono etc cd etc yum.repos.d azureuser mono yum.repos.d vi mariadb.repo mariadb 10.0 centos reposit...

CentOS使用yum安裝Redis

1.直接yum 安裝的redis 不是最新版本,也有可能沒有yum源導致不成功 yum install redis 2.從官網安裝最新的redis 2 使用命令安裝最新版本的redis yum install y yum enablerepo remi install redis 3.裝乙個第三方的...