1.假設已經有mysql-5.5.25.tar.gz以及cmake-2.8.4.tar.gz兩個源文件html
(1)先安裝cmake(mysql5.5之後是經過cmake來編譯的)mysql
[root@ rhel5 local]#apt-get install cmake
(2)建立mysql的安裝目錄及數據庫存放目錄sql
[root@ rhel5~]#mkdir -p /usr/local/mysql //安裝mysql [root@ rhel5~]#mkdir -p /usr/local/mysql/data //存放數據庫
(3)建立mysql用戶及用戶組數據庫
[root@ rhel5~]groupadd mysql [root@ rhel5~]useradd -r -g mysql mysql
(4)安裝mysql緩存
[root@ rhel5 local]#tar -zxv -f mysql-5.5.10.tar.gz [root@ rhel5 local]#cd mysql-5.5.10 [root@ rhel5 mysql-5.5.10]#cmake . \ -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \ -DMYSQL_DATADIR=/usr/local/mysql/data \ -DDEFAULT_CHARSET=utf8 \ -DDEFAULT_COLLATION=utf8_general_ci \
-DEXTRA_CHARSETS=all \ -DENABLED_LOCAL_INFILE=1 [root@ rhel5 mysql-5.5.10]#make [root@ rhel5 mysql-5.5.10]#make install
參數說明:bash
-DCMAKE_INSTALL_PREFIX=/usr/local/mysql //安裝目錄app
-DINSTALL_DATADIR=/usr/local/mysql/data //數據庫存放目錄es5
-DDEFAULT_CHARSET=utf8 //使用utf8字符spa
-DDEFAULT_COLLATION=utf8_general_ci //校驗字符rest
-DEXTRA_CHARSETS=all //安裝全部擴展字符集
-DENABLED_LOCAL_INFILE=1 //容許從本地導入數據
cmake 的時候有報錯,根據提示還須要 安裝 g++ 等兩個軟件包
1 2 |
|
從新 cmake 以前必定要 執行
1 |
|
注意事項:
從新編譯時,須要清除舊的對象文件和緩存信息。
# make clean
# rm -f CMakeCache.txt
# rm -rf /etc/my.cnf
2.配置
(1)設置目錄權限
[root@ rhel5~]# cd /usr/local/mysql [root@ rhel5 mysql]# chown -R root:mysql . //把當前目錄中全部文件的全部者全部者設爲root,所屬組爲mysql [root@ rhel5 mysql]# chown -R mysql:mysql data
(2)
[root@ rhel5 mysql]# cp support-files/my-medium.cnf /etc/my.cnf
(3)建立系統數據庫的表
[root@ rhel5 mysql]# cd /usr/local/mysql [root@ rhel5 mysql]# scripts/mysql_install_db --user=mysql
(4)設置環境變量
[root@ rhel5~]# vi /root/.bash_profile 在PATH=$PATH:$HOME/bin添加參數爲: PATH=$PATH:$HOME/bin:/usr/local/mysql/bin:/usr/local/mysql/lib [root@ rhel5~]#source /root/.profile
(5)手動啓動mysql
[root@ rhel5~]# cd /usr/local/mysql [root@ rhel5 mysql]# ./bin/mysqld_safe --user=mysql & //啓動MySQL,但不能中止 啓動日誌寫在此文件下:/usr/local/mysql/data/localhost.err 關閉MySQL服務 [root@ rhel5 mysql]# mysqladmin -u root -p shutdown //這裏MySQL的root用戶尚未配置密碼,因此爲空值。須要輸入密碼時,直接點回車鍵便可。
(6)另外一種簡單的啓動mysql的方法(mysql已經被添加到系統服務中)
[root@ rhel5~]# service mysql.server start [root@ rhel5~]# service mysql.server stop [root@ rhel5~]# service mysql.server restart
若是上述命令出現:mysql.server 未識別的服務
則可能mysql還沒添加到系統服務中,下面用另外一種方法添加:
[root@ rhel5 mysql]# cp support-files/mysql.server /etc/init.d/mysql //將mysql的啓動服務添加到系統服務中
注意:主要是將mysql.server拷貝到/etc/init.d中,命名爲mysql。本系統中,mysql.server在/usr/local/mysql/support-files/mysql.server中。
而後再用#service mysql start 來啓動mysql便可。
(7)修改MySQL的root用戶的密碼以及打開遠程鏈接
[root@ rhel5~]# mysql -u root mysql mysql>use mysql; mysql>desc user; mysql> GRANT ALL PRIVILEGES ON *.* TO root@"%" IDENTIFIED BY "root"; //爲root添加遠程鏈接的能力。 mysql>update user set Password = password('xxxxxx') where User='root'; mysql>select Host,User,Password from user where User='root'; mysql>flush privileges; mysql>exit 從新登陸:mysql -u root -p
注:若是不能遠程鏈接
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '******' WITH GRANT OPTION;