Linux 下用yum安裝mysql

2021-07-09 05:22:24 字數 2618 閱讀 6925

1、檢視系統自帶mysql是否已安裝。

[root@develop  bin]# yum list installed | grep mysql

mysql-libs.x86_64       5.1.73-5.el6_6  @base

2、若有自帶安裝的mysql,將其解除安裝

[root@develop  ~]# yum –y remove mysql-libs.x86_64

若有多個依賴檔案則依次解除安裝。

3、使用yum安裝mysql資料庫。

[root@develop  ~]# yum -y install mysql-server mysql mysql-devel

命令將:mysql-server、mysql、mysql-devel都安裝好,當結果顯示為「complete!」即安裝完畢。

注:安裝mysql只是安裝了資料庫,只有安裝mysql-server才相當於安裝了客戶端。

4、啟動mysql服務,在終端輸入:

service mysqld start

或者/etc/init.d/mysqld start

5、設定mysql服務隨系統啟動自啟動

[root@develop  ~]# chkconfig mysqld on 

檢查啟動狀態

[root@develop ~]# chkconfig --list mysqld

mysqld         0:關閉1:關閉2:啟用3:啟用4:啟用5:啟用6:關閉

6、檢視剛安裝mysql資料庫版本資訊

[root@develop ~]# rpm -qi mysql-server

name        : mysql-server                 relocations: (not relocatable)

version     : 5.1.73                            vendor: centos

release     : 5.el6_6                       build date: 2023年06月22日 星期一 21時08分32秒

install date: 2023年12月23日 星期三 11時00分00秒      build host: c6b9.bsys.dev.centos.org

size        : 25882979                         license: gplv2 with exceptions

signature   : rsa/sha1, 2023年06月22日 星期一 22時30分08秒, key id 0946fca2c105b9de

packager    : centos buildsystem

url         :

summary     : the mysql server and related files

description :

mysql is a multi-user, multi-threaded sql database server. mysql is a

client/server implementation consisting of a server daemon (mysqld)

and many different client programs and libraries. this package contains

the mysql server and some accompanying files and directories.

7、建立root管理使用者

檢視檔案安裝路徑

[root@develop ~]# whereis mysql

mysql: /usr/bin/mysql /usr/lib64/mysql /usr/include/mysql /usr/share/mysql /usr/share/man/man1/mysql.1.gz

在終端輸入:

cd /usr/bin/ 

目錄下建立

root

使用者密碼

[root@develop bin]# mysqlmysqladmin -u root -p password again2015

8、登入mysql系統

[root@develop bin]# mysql -uroot -p

enter password: 

[輸入原來密碼]

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is 23

server version: 5.1.73 source distribution

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h' for help. type '\c' to clear the current input statement.

mysql>

Centos7下 使用yum命令安裝mysql

記錄這個的原因是因為我之前使用ssh secure file transfer client上傳mysql安裝包,然後再linux環境裡面安裝mysql時各種問題難以解決,可能是因為centos7的版本跟之前的6有些不一樣,centos 7 版本將mysql資料庫軟體從預設的程式列表中移除,用mar...

在Linux下用yum安裝所需的指令

在昨天用finger及tree指令時發現linux預設情況下未安裝這兩個指令。於是就自己嘗試了下安裝這兩個指令。在進行操作前我們要有乙個明確的思路,這樣我們實際進行時可以事半功倍。我用的是第二種方法 基本流程 1,你需要先建立乙個掛載時用到的資料夾不建隨便找乙個資料夾也可以。用mkdir指令 2,將...

Linux下用yum安裝Nginx最新版

noarch rpms 可通過變換上面的位址找到與自己伺服器對應版本 repo 的 rpm。更新一下 yum repo,以便可以安裝到對應的最新版本 nginx.rpm uvh安裝好 yum repo 之後,接下來用 yum 安裝 nginx yum y install nginx檢查 nginx版...