CentOS下RPM方式安裝MySQL5.6(轉載)

來源:互聯網
上載者:User

標籤:使用者名稱   utf-8   區別   gen   串連數   upd   remove   local   oss   

 

之前的項目全都在windows系統內容下部署的,這次嘗試在Linux系統內容下部署,於是這次我們組織在7台主機上安裝了JDK、Maven、Jboss其中一台安裝了Mysql,並將區域網路配置好,終於大功告成了。下面將安裝步驟與大家分享!

    系統版本:centos6.3-i386 32位作業系統

    硬體設定:核心 Intel(R) Pentium(R) 4 CPU 3.00GHz 記憶體998.5M 

    安裝環境:使用shell 命令

 

此次安裝在案頭環境下,使用shell命令進行安裝,下載安裝包為:

MySQL-5.6.25-1.linux_glibc2.5.i386.rpm-bundle.tar;

a. 檢查MySQL及相關RPM包,是否安裝,如果有安裝,則移除(rpm –e 名稱)

[[email protected] ~]# rpm -qa | grep -i mysqlmysql-libs-5.1.66-2.el6_3.x86_64[[email protected] ~]# yum -y remove mysql-libs*

b. 選擇Linux對應的RPM包,如下:

[[email protected] rpm]# lltotal 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

c. 安裝MySQL

[[email protected] rpm]# rpm -ivh MySQL-server-5.6.15-1.el6.x86_64.rpm[[email protected] rpm]# rpm -ivh MySQL-devel-5.6.15-1.el6.x86_64.rpm[[email protected] rpm]# rpm -ivh MySQL-client-5.6.15-1.el6.x86_64.rpm#修改設定檔位置[[email protected] rpm]# cp /usr/share/mysql/my-default.cnf /etc/my.cnf

d. 初始化MySQL及設定密碼

[[email protected] rpm]# /usr/bin/mysql_install_db[[email protected] rpm]# service mysql start[[email protected] 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[[email protected] ~]# mysql -uroot –pqKTaFZnlmysql> SET PASSWORD = PASSWORD(‘123456‘);    #設定密碼為123456mysql> exit[[email protected] ~]# mysql -uroot -p123456

e. 遠程登陸使用者佈建

    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

f. 設定開機自啟動

[[email protected] ~]# chkconfig mysql on[[email protected] ~]# chkconfig --list | grep mysqlmysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off

g. MySQL的預設安裝位置

/var/lib/mysql/               #資料庫目錄/usr/share/mysql              #設定檔目錄/usr/bin                     #相關命令目錄/etc/init.d/mysql              #啟動指令碼

h. 修改字元集和資料存放區路徑

配置/etc/my.cnf檔案,修改資料存放路徑、mysql.sock路徑以及預設編碼utf-8.

[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 

可查看字元集

show variables like ‘%collation%‘;  show variables like ‘%char%‘; 

I.如果想遠端連線登入mysql則需要:授權,並關閉防火牆。

   1.授權;在服務端進入mysql,輸入以下命令

[GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘這裡是你的密碼‘ WITH GRANT

OR

[GRANT ALL PRIVILEGES ON *.* TO ‘root‘@‘%‘ IDENTIFIED BY ‘‘ WITH GRANT OPTION;]

  區別在於訪問時是否需要寫密碼。 

 

   這句的作用是將所有的使用者名稱,都設定能遠端存取該mysql中所有的表,如果不想都放開,可以根據這個規則,來設定.grant 許可權1,許可權2,…許可權n on 資料庫名.表名 to使用者名稱@使用者地址 identified by‘口令’.

   2.關閉防火牆

service iptables stop 關閉命令   chkconfig iptables off 永久關閉防火牆

兩個命令同時運行,運行完成後查看防火牆關閉狀態

service iptables status 

到此,mysql就安裝完成並配置成功了

 

轉載自:http://www.centoscn.com/mysql/2015/0624/5729.html

 

CentOS下RPM方式安裝MySQL5.6(轉載)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.