centos下mysql資料庫的安裝

2021-08-23 12:38:40 字數 3494 閱讀 5417

yum install lrzsz
查詢這兩個檔案是否存在,存在則說明之前有個安裝,刪除掉即可。還有可能是系統自帶的,先刪掉;

ll /etc/my.cnf

ll /etc/init.d/mysql*

yum search libaio      

yum install libaio #安裝libaio

# cd 到mysoft/pack 目錄下

tar -zxvf mysql-5.5.57-linux-glibc2.12-x86_64.tar.gz

#建立軟連線

[root@localhost mysoft]# ln -s /mysoft/pack/mysql-5.5.57-linux-glibc2.12-x86_64 mysql

[root@localhost mysoft]# ll

總用量 0

lrwxrwxrwx. 1 root root 48 10月 6 11:32 mysql -> /mysoft/pack/mysql-5.5.57-linux-glibc2.12-x86_64

drwxr-xr-x. 3 root root 99 10月 6 11:30 pack

#建立mysql使用者組

[root@localhost mysoft]# groupadd mysql

#把使用者mysql新增到mysql使用者組, -r系統使用者 -g所屬組 -s /bin/false 使用者不可登入

[root@localhost mysoft]# useradd -r -g mysql -s /bin/false mysql

[root@localhost mysoft]# cd mysql

#改變檔案的所有權 -r表示改變乙個目錄和其下檔案(或者子目錄)的所有權設定

[root@localhost mysql]# chown -r mysql ./ #mysql下的所有目錄和檔案交給mysql使用者

[root@localhost mysql]# chgrp -r mysql ./ #mysql下的所有目錄和檔案交給mysql組

[root@localhost mysql]# ll

總用量 56

drwxr-xr-x. 2 mysql mysql 4096 10月 6 11:30 bin

-rw-r--r--. 1 mysql mysql 17987 6月 5 14:38 copying

drwxr-xr-x. 3 mysql mysql 18 10月 6 11:30 data

drwxr-xr-x. 2 mysql mysql 55 10月 6 11:30 docs

drwxr-xr-x. 3 mysql mysql 4096 10月 6 11:30 include

-rw-r--r--. 1 mysql mysql 301 6月 5 14:38 install-binary

drwxr-xr-x. 3 mysql mysql 4096 10月 6 11:30 lib

drwxr-xr-x. 4 mysql mysql 30 10月 6 11:30 man

drwxr-xr-x. 10 mysql mysql 4096 10月 6 11:30 mysql-test

-rw-r--r--. 1 mysql mysql 2496 6月 5 14:38 readme

drwxr-xr-x. 2 mysql mysql 30 10月 6 11:30 scripts

drwxr-xr-x. 27 mysql mysql 4096 10月 6 11:30 share

drwxr-xr-x. 4 mysql mysql 4096 10月 6 11:30 sql-bench

drwxr-xr-x. 2 mysql mysql 4096 10月 6 11:30 support-files

[root@localhost mysql]# cd support-fils

[root@localhost support-files]# cp my-medium.cnf /etc/my.cnf

[root@localhost support-files]# cp mysql.server /etc/init.d/mysql

vim /etc/my.cnf

#修改mysql指向,新增這兩個目錄;

安裝成功效果

#新增環境變數

export path=$path:/mysoft/mysql/bin

[root@localhost scripts]# source /etc/profile #生效

centos下安裝mysql資料庫

yum install mysql yum install mysql server yum install mysql devel 安裝mysql和mysql devel都成功,但是安裝mysql server失敗。查資料發現是centos 7 版本將mysql資料庫軟體從預設的程式列表中移除,用...

CentOS下安裝MySQL資料庫

其實,安裝 mysql 資料庫還是比較容易的,安裝方式可以分為原始碼安裝和二進位製包安裝。安裝簡單,只需要 yum安裝幾個包就可以搞定,安裝後續其實還需要簡單做些工作,才可以使用。1 環境 centos 6.5 2 方式 yum 3 命令 yum install mysql server mysql...

centos下mysql資料庫無法訪問

centos下mysql資料庫無法訪問 在centos上安裝完mysql後,預設不開始遠端訪問控制。可以進行如下設定開啟。登入mysql mysql uroot p 如需修改密碼,第一次 mysqladmin u root password newpassword 已設定過 mysqladmin u...