0923關於安裝mysql兩種簡單方式

來源:互聯網
上載者:User

標籤:伺服器   comment   nes   har   nbsp   html   ges   ber   upd   

http://blog.csdn.net/liumm0000/article/details/18841197

方式一:利用RPM安裝包進行安裝

RPM方式安裝MySQL5.6

RPM方式安裝MySQL5.6

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

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

b. 下載Linux對應的RPM包,如:CentOS6.4_64對應的RPM包,如下:

1 [[email protected] rpm]# ll
2 total 74364
3 -rw-r--r--. 1 root root 18442536 Dec 11 20:19 MySQL-client-5.6.15-1.el6.x86_64.rpm
4 -rw-r--r--. 1 root root  3340660 Dec 11 20:06 MySQL-devel-5.6.15-1.el6.x86_64.rpm
5 -rw-r--r--. 1 root root 54360600 Dec 11 20:03 MySQL-server-5.6.15-1.el6.x86_64.rpm

c. 安裝MySQL

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

d. 初始化MySQL及設定密碼

1 [[email protected] rpm]# /usr/bin/mysql_install_db
2 [[email protected] rpm]# service mysql start
3 [[email protected] rpm]# cat /root/.mysql_secret  #查看root帳號密碼
4 # The random password set for the root user at Wed Dec 11 23:32:50 2013 (local time): qKTaFZnl
5 [[email protected] ~]# mysql -uroot –pqKTaFZnl
6 mysql> SET PASSWORD = PASSWORD(‘123456‘);    #設定密碼為123456
7 mysql> exit
8 [[email protected] ~]# mysql -uroot -p123456

e. 允許遠程登陸

01 mysql> use mysql;
02 mysql> select host,user,password from user;
03 +-----------------------+------+-------------------------------------------+
04 | host                  | user | password                                  |
05 +-----------------------+------+-------------------------------------------+
06 | localhost             | root | *6BB4837EB74329105EE4568DDA7DC67ED2CA2AD9 |
07 | localhost.localdomain | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
08 | 127.0.0.1             | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
09 | ::1                   | root | *1237E2CE819C427B0D8174456DD83C47480D37E8 |
10 +-----------------------+------+-------------------------------------------+
11  
12 mysql> update user set password=password(‘123456‘) where user=‘root‘;
13 mysql> update user set host=‘%‘ where user=‘root‘ and host=‘localhost‘;
14 mysql> flush privileges;
15 mysql> exit

f. 設定開機自啟動

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

g. MySQL的預設安裝位置

 

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

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

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

  1. [client]  
  2. password        = 123456  
  3. port            = 3306  
  4. default-character-set=utf8  
  5. [mysqld]  
  6. port            = 3306  
  7. character_set_server=utf8  
  8. character_set_client=utf8  
  9. collation-server=utf8_general_ci  
  10. #(注意linux下mysql安裝完後是預設:表名區分大小寫,列名不區分大小寫; 0:區分大小寫,1:不區分大小寫)  
  11. lower_case_table_names=1  
  12. #(設定最大串連數,預設為 151,MySQL伺服器允許的最大串連數16384; )  
  13. max_connections=1000  
  14. [mysql]  
  15. default-character-set = utf8  

查看字元集

show variables like ‘%collation%‘;

show variables like ‘%char%‘;

 

 方式二:利用mysql倉庫進行安裝

yum install lrzsz -- 安裝一個工具
rz -- 開啟本地檔案命令
rpm -ivh mysql-community-release-el7-5.noarch.rpm -- 安裝倉庫檔案 下載檔案地址 https://repo.mysql.com//mysql57-community-release-el7-11.noarch.rpm
yum install mysql -- 安裝mysql

-- 相當於開啟倉庫檔案,安裝mysql更加輕鬆

0923關於安裝mysql兩種簡單方式

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.