編譯安裝mysql 5.5

來源:互聯網
上載者:User

標籤:mysql 編譯 安裝

1       mysql 5.5.11編譯安裝
1.1      安裝所需要系統庫相關庫檔案
gcc gcc-c++ gcc-g77 autoconf automake zlib* fiex* libxml* ncurses-devel libmcrypt* libtool-ltdl-devel*

1.2      建立mysql安裝目錄  
[[email protected] mysql-5.5.11]# mkdir -p /usr/local /mysql/

1.3      建立資料存放目錄
[[email protected] mysql-5.5.11]# mkdir -p /data/mysql/

1.4      建立使用者和使用者組與賦予資料存放目錄許可權
  [[email protected] mysql-5.5.11]# groupadd mysql

  [[email protected] mysql-5.5.11]# useradd -g mysql mysql

[[email protected] mysql-5.5.11]# chown mysql.mysql -R /data/mysql/

1.5      安裝cmake
(mysql5.5以後是通過cmake來編譯的)

下載解壓cmake-2.8.4.tar.gz

[[email protected] mysql-5.5.11]# wget http://www.cmake.org/files/v2.8/cmake-2.8.4.tar.gz

//檔案在//192.168.10.250  /cgroup/soft/mysql

  [[email protected] mysql-5.5.11]# tar zxvf cmake-2.8.4.tar.gz

  [[email protected] mysql-5.5.11]# cd cmake-2.8.4

  [[email protected] mysql-5.5.11]#./configure

[[email protected] mysql-5.5.11]# make && make install

1.6      安裝mysql 5.5.11
[[email protected] mysql-5.5.11]#wget http://mirrors.sohu.com/mysql/MySQL-5.5/mysql-5.5.11.tar.gz

//檔案在//192.168.10.250  /cgroup/soft/mysql

  [[email protected] down]# tar zxvf mysql-5.5.11.tar.gz

[[email protected] down]# cd mysql-5.5.11

1.7      編譯mysql-5.5.11
[[email protected] mysql-5.5.11]#cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \

-DMYSQL_UNIX_ADDR=/data/mysql/mysql.sock \

-DDEFAULT_CHARSET=utf8 \

-DDEFAULT_COLLATION=utf8_general_ci \

-DWITH_EXTRA_CHARSETS:STRING=utf8,gbk \

-DWITH_MYISAM_STORAGE_ENGINE=1 \

-DWITH_INNOBASE_STORAGE_ENGINE=1 \

-DWITH_MEMORY_STORAGE_ENGINE=1 \

-DWITH_READLINE=1 \

-DENABLED_LOCAL_INFILE=1 \

-DMYSQL_DATADIR=/data/mysql \

-DMYSQL_USER=mysql \

-DMYSQL_TCP_PORT=3306

上面的命令一次拷進命令列。

  [[email protected] mysql-5.5.11]# make

[[email protected] mysql-5.5.11]# make install

1.8      複製設定檔
  [[email protected]]# cp support-files/my-medium.cnf /etc/my.cnf

1.9      初始化資料庫
(執行前 需要chmod 755 scripts/mysql_install_db 賦給檔案執行許可權)

[[email protected] mysql-5.5.11]#scripts/mysql_install_db  --user=mysql  --basedir=/usr/local/mysql --datadir=/data/mysql/

註:#basedir mysql安裝路徑 datadir 資料庫檔案儲存路徑

1.10  設定mysqld的開機啟動:
 [[email protected]]# cp support-files/mysql.server /etc/init.d/mysql

[[email protected]]# chmod 755 /etc/init.d/mysql

chkconfig mysql on

1.11 配置環境
為了方便,將mysql 的bin目錄加到PATH中,在/etc/profile中加入myslq/bin,順便增加兩個別名方便操作:

export PATH=/usr/local/mysql/bin:$PATH

開關用戶端

alias mysql_start="mysqld_safe&"

alias mysql_stop="mysqladmin -uroot -p shutdown"

1.12 啟動mysql服務
[[email protected] mysql-5.5.11]# /etc/init.d/mysql start  //伺服器端開關

啟動完成之後用ps -ef |grep mysql 命令查看是否啟動

[[email protected] mysql-5.5.11]#/mysql –u root –p   //client開關參照1.11一文

2       標準的mysql安裝設定
    

2.1      設定root帳戶的密碼
[[email protected] mysql-5.5.11]#mysqladmin -u root password ‘yourpassword‘

2.2      刪除本機匿名串連的空密碼帳號
本機登入mysql

[[email protected] mysql-5.5.11]#mysql –u root -p
然後輸入上面設定的密碼,登入後在mysql的命令列中執行:

mysql>use mysql; //選擇預設資料庫mysql

mysql>update user set password=’root’ where user = ‘127.0.0.1‘;

mysql>delete from user where password="";//不允許root密碼為空白

mysql>flush privileges;

mysql>quit

容許root使用者是遠程登入

對於root帳號,如果考慮安全應該建立其他帳號用於遠程登入,root帳號可以不必開啟遠程登入。不過對於一般使用,沒有太多安全需求,允許root使用者遠程登入可以方便管理,畢竟使用專用管理軟體的圖形介面在操作方面要方便的多。

  

3       實現MySQL遠端連線的實際操作流程
      

3.1      mysql 資料庫端設定
[[email protected] mysql-5.5.11]#/mysql –u root –p  //進入資料庫

mysql>use mysql

mysql>select user,password,host from user;

mysql>update user set host = ‘192.168.%‘ where user = ‘127.0.0.1‘;

mysql>grant all privileges on *.* to [email protected]‘%‘ identified by "root";//給以[email protected]登入的遠端連線賦予許可權,能夠串連資料庫。遠程無法串連的常見問題原因。

並把遠程登入使用者的密碼設定為root

mysql> flush privileges;

mysql>quit


相關文章

聯繫我們

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