共計 3061 個字符,預計需要花費 8 分鐘才能閱讀完成。
這篇文章主要講解了“怎么用 RPM 方式安裝 MySQL5.6”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著丸趣 TV 小編的思路慢慢深入,一起來研究和學習“怎么用 RPM 方式安裝 MySQL5.6”吧!
1. 檢查 MySQL 及相關 RPM 包
檢查 MySQL 及相關 RPM 包,是否安裝,如果有安裝,則移除(rpm –e 名稱)
[plain] view plain copy
[root@localhost ~]# rpm -qa | grep -i mysql
mysql-libs-5.1.66-2.el6_3.x86_64
[root@localhost ~]# yum -y remove mysql-libs*
2. 下載 rpm 包
下載 Linux 對應的 RPM 包,如:CentOS6.4_64 對應的 RPM 包,如下:[plain] view plain copy
[root@localhost rpm]# ll
total 74364
-rw-r–r–. 1 root root 18442536 Dec 11 20:19 MySQL-client-5.6.15-1.el6.x86_64.rpm
-rw-r–r–. 1 root root 3340660 Dec 11 20:06 MySQL-devel-5.6.15-1.el6.x86_64.rpm
-rw-r–r–. 1 root root 54360600 Dec 11 20:03 MySQL-server-5.6.15-1.el6.x86_64.rpm
3. 安裝 MySQL [plain] view plain copy
[root@localhost rpm]# rpm -ivh MySQL-server-5.6.15-1.el6.x86_64.rpm
[root@localhost rpm]# rpm -ivh MySQL-devel-5.6.15-1.el6.x86_64.rpm
[root@localhost rpm]# rpm -ivh MySQL-client-5.6.15-1.el6.x86_64.rpm
# 修改配置文件位置
[root@localhost rpm]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf
4. 初始化 MySQL 及設置密碼 [plain] view plain copy
[root@localhost rpm]# /usr/bin/mysql_install_db
[root@localhost rpm]# service mysql start
[root@localhost rpm]# cat /root/.mysql_secret # 查看 root 賬號密碼
# The random password set for the root user at Wed Dec 11 23:32:50 2013 (local time): qKTaFZnl
[root@localhost ~]# mysql -uroot –pqKTaFZnl
mysql SET PASSWORD = PASSWORD(123456 # 設置密碼為 123456
mysql exit
[root@localhost ~]# mysql -uroot -p123456
5. 允許遠程登陸 [plain] view plain copy
mysql use mysql;
mysql select host,user,password from user;
+———————–+——+——————————————-+
| host | user | password |
+———————–+——+——————————————-+
| localhost | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
| localhost.localdomain | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
| 127.0.0.1 | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
| ::1 | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
+———————–+——+——————————————-+
mysql update user set password=password(123456) where user= root
mysql update user set host= % where user= root and host= localhost
mysql flush privileges;
mysql exit
6. 設置開機自啟動 [plain] view plain copy
[root@localhost ~]# chkconfig mysql on
[root@localhost ~]# chkconfig –list | grep mysql
mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
7. MySQL 的默認安裝位置 [plain] view plain copy
/var/lib/mysql/ # 數據庫目錄
/usr/share/mysql # 配置文件目錄
/usr/bin # 相關命令目錄
/etc/init.d/mysql # 啟動腳本
8. 修改字符集和數據存儲路徑
配置 /etc/my.cnf 文件, 修改數據存放路徑、mysql.sock 路徑以及默認編碼 utf-8.
[plain] view plain copy
[client]
password = 123456
port = 3306
default-character-set=utf8
[mysqld]
port = 3306
character_set_server=utf8
character_set_client=utf8
collation-server=utf8_general_ci
#(注意 linux 下 mysql 安裝完后是默認:表名區分大小寫,列名不區分大小寫; 0:區分大小寫,1:不區分大小寫)
lower_case_table_names=1
#(設置最大連接數,默認為 151,MySQL 服務器允許的最大連接數 16384; )
max_connections=1000
[mysql]
default-character-set = utf8
感謝各位的閱讀,以上就是“怎么用 RPM 方式安裝 MySQL5.6”的內容了,經過本文的學習后,相信大家對怎么用 RPM 方式安裝 MySQL5.6 這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是丸趣 TV,丸趣 TV 小編將為大家推送更多相關知識點的文章,歡迎關注!