Linux安裝mysql的幾種方法

2021-10-09 19:16:28 字數 1412 閱讀 2781

在ubuntu系統的apt軟體倉庫中,預設存在mysql資料庫,所以直接使用apt命令就可以安裝。 使用命令:

apt/apt-get install mysql-server mysql-client

centos yum中存在mariadb的源,因此安裝很是簡單(如果在安裝centos時選擇了,可能已經預設 安裝了)。

安裝過程:

1、如果使用官方源,直接yum install mariadb-server mariadb-client -y命令安裝即可。

2、建議使用國內的源:新增mariadb10.2的國內yum源,之前新增的是國外的源,安裝很耗時,因此可以使用國內yum源,通過這個源安裝較快。

vim /etc/yum.repos.d/mariadb.repo

新增以下內容:

[mariadb]

name = mariadb

baseurl =

gpgkey=

gpgcheck=1

官方yum源:

#mariadb 10.2 centos repository list - created 2018-06-06 03:42 utc

#[mariadb]

name = mariadb

baseurl =

gpgkey=

gpgcheck=1

3、清除yum源快取資料

yum clean all

4、安裝mariadb10.2

yum install mariadb-server mariadb-client -y

5、啟動並新增開機自啟:

systemctl start mariadb.service

systemctl enable mariadb.service

6、安全外掛程式初始化密碼(如果安裝系統時已經安裝了mariadb,則直接初始化密碼即可)

/usr/bin/mysql_secure_installation

一般建議按以下進行配置:

enter current password for root (enter for none): just press the enter button

set root password? [y/n]: y

new password: your-mariadb-root-password

re-enter new password: your-mariadb-root-password

remove anonymous users? [y/n]: y

disallow root login remotely? [y/n]: n

remove test database and access to it? [y/n]: y

reload privilege tables now? [y/n]: y

mysql安裝幾種方式

mysql rpm安裝的目錄資訊 rpm 包方式安裝極為簡單 這裡就不贅述 談談其他物件 比如 mysql 各個 rpm 包是什麼意思?mysql version.i386.rpm mysql伺服器。除非你只是想要與執行在其他機器上mysql伺服器連線,否則你將需要它 mysql client ve...

Linux安裝軟體的幾種方式

linux軟體安裝的幾種方式 1.apt get和apt 區別 apt是apt get常用命令的精簡般,帶上了必要引數,易用,推薦使用apt apt install 安裝軟體包 apt remove 移除軟體包 apt purge 移除軟體包及配置檔案 apt update 重新整理儲存庫索引 ap...

linux 安裝軟體的幾種方法

1 軟體安裝解除安裝,分幾種情況 a rpm包,這種軟體包就像windows的exe安裝檔案一樣,各種檔案已經編譯好,並打了包,哪個檔案該放到哪個資料夾,都指定好了,安裝非常方便,在圖形介面裡你只需要雙擊就能自動安裝。如何解除安裝 1 開啟乙個shell終端 2 因為linux下的軟體名都包括版本號...