MySQL二進位包安裝 for RedHat Linux Enterprise 6.4

來源:互聯網
上載者:User

MySQL二進位包安裝 for RedHat Linux Enterprise 6.4

下載MySQL,並上傳至伺服器

1. 在mysql官網下載Mysql二進位安裝包

https://edelivery.Oracle.com/osdc/faces/SearchSoftware?_afrLoop=2326871189822158&_afrWindowMode=0&_adf.ctrl-state=hqkzyoa95_9

2. 上傳到伺服器並且解壓

tar -xzvf mysql-advanced-5.6.26-linux-glibc2.5-x86_64.tar.gz

建立mysql帳號

useradd mysql

安裝mysql需要的包,libaio

yum install libaio*

將解壓後的mysql安裝包放到指定安裝的位置,改變屬主為mysql,並且為mysql檔案夾建立軟串連(為了方便管理)

mv mysql-advanced-5.6.26-linux-glibc2.5-x86_64 /app/

chown -R mysql:mysql /app/mysql-advanced-5.6.26-linux-glibc2.5-x86_64

ln -s ./mysql-advanced-5.6.26-linux-glibc2.5-x86_64 mysql

安裝mysql

cd /app/mysql/scripts

./mysql_install_db --user=mysql --basedir=/app/mysql --datadir=/app/mysqldata

為了方便使用,我們配置mysql使用者的設定檔 .bash_profile,添加下面內容

export MYSQL_HOME=/app/mysql

export PATH=${MYSQL_HOME}/bin:${PATH}

配置mysql

複製預設設定檔到 /etc/my.cnf 並配置

cp ./support-files/my-default.cnf /etc/my.cnf

修改裡面的內容例如

basedir=/app/mysql

datadir=/app/mysqldata

log_bin=/app/mysqllog/dbtest

innodb_buffer_pool_size = 128M

sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES

max_binlog_cache_size=67108864

max_binlog_size=2147483648

max_binlog_stmt_cache_size=67108864

binlog_cache_size=131072

innodb_log_files_in_group=3

innodb_log_group_home_dir=/app/mysql_innodb_log

複製mysql管理指令碼到/etc/init.d 並做必要修改

cp mysql.server /etc/init.d/mysql

修改basedir和datadir

basedir=/app/mysql

datadir=/app/mysqldata

在rc{3,4,5}.d中建立mysql服務指令碼的串連,如下:

cd /etc/rc3.d  | rc4.d  | rc5.d

[root@DBTEST2 rc3.d]# ln -s ../init.d/mysql S99mysql

[root@DBTEST2 rc3.d]# ln -s ../init.d/mysql K01mysql

S99mysql 其中S表示系統啟動,99表示啟動服務次序,最後啟動服務

K01mysql 其中K表示跟隨系統關機停止服務,01表示停止服務順序,最先關閉

在另外兩個檔案夾中依次執行上面步驟

使用chkconfig命令添加服務,這樣mysql就會隨著系統啟動自動啟動了

[root@DBTEST2 rc5.d]# chkconfig --list|grep mysql

mysql           0:off 1:off 2:on 3:on 4:on 5:on 6:off

修改root密碼

1. 使用 mysqld_safe --skip-grant-tables啟動資料庫,跳過授權表,修改root使用者密碼

[root@DBTEST2 mysql]# ./bin/mysqld_safe --user=mysql --datadir=/app/mysqldata --basedir=/app/mysql --skip-grant-tables

mysql> update user set password=password('123456') where user='root';

mysql> flush privileges;

重啟資料庫即可

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.