Linux 下 二進位源碼包安裝mysql 詳細過程

來源:互聯網
上載者:User

安裝之前先把二進位源碼準備好,可以從搜狐鏡像下載:http://mirrors.sohu.com/

我準備的是mysql-5.5.15-linux2.6-i686.tar.gz  ,Linux version 2.6.18-164.el5

實際工作中和虛擬機器的配置有些地方可能會不相同

====================================================================

 注意:mysql 安裝的時候必須指定到 /usr/local 必須命名為mysql 
             二進位源碼安裝需要在安裝目錄/usr/local下運行

view plainprint?
  1. //建立使用者mysql         
  2.    * groupadd -g 3306 mysql  
  3.    * useradd -g mysql -u 3306 -M mysql  
  4.    * id mysql  
  5.    * chown -R mysql:mysql /mydata/            // mysql對目錄要有寫入權限   
  6.    * ll -d /mydata/  
  7.    * cp /mysql-5.5.15-linux2.6-i686 /usr/local  
  8.    * cd /usr/local/mysql                      // 開始初始化 mysql  
  9.    * chown -R mysql:mysql .  
  10.    * ln -sv /mysql-5.5.15-linux2.6-i686 mysql    
  11.    * scripts/mysql_install_db --user=mysql --datadir=/mydata/data    
  12.    // <span style="color:#993300;">scripts指令碼初始化</span> 初始化 用來產生mysql資料庫 資料庫用來存放表等來源資料資訊  
view plainprint?
  1. //安裝完成 下面配置啟動  
  2.    * ls support-files/                                   // 準備服務啟動指令碼   
  3.    * cp support-files/mysql.server /etc/init.d/mysqld    // 放入init.d  
  4.    * chkconfig --add mysqld                              // 加入服務列表  
  5.    * chkconfig --list mysqld                             // --list 顯示出來  
  6.      
view plainprint?
  1. //此時可以啟動mysql了 但還需要配置mysql      
  2.    * ls /etc/my.cnf  
  3.    * ls support-files/  
  4.    * cp support-files/my-large.cnf /etc/my.cnf  
  5.    * vim /etc/my.cnf   
  6.       [mysqld]                              // 找到該段 並添加datadir = /mydata/data    
  7.      datadir = /mydata/data  
  8.    * service mysqld start                   // 開啟服務  
  9.      
  10.    * netstat -tnl                           // 3306 連接埠開啟  
  11.    * echo $PATH  
  12.    * /usr/local/mysql/bin/mysql  
  13.    * export PATH=$PATH:/usr/local/mysql/bin // <span style="color:#cc6600;">注意</span>:不加$ 就僅僅剩下你添加的路徑   
  14.    * vim /etc/profile                       // 在export 之前添加下面的路徑  
  15.       PATH=$PATH:/usr/local/mysql/bin       //  永久生效的路徑配置方法  
  16.    * mysql                                  // 此時mysql已經可啟動了     
  17.         
view plainprint?
  1. //mysql庫檔案的路徑配置                                                
  2.    * ls  
  3.    * vim /etc/ld.so.conf                    // 修改庫檔案位置  
  4.    * vim /etc/ld.so.conf.d/mysql.conf       // 規範的配置 目前的目錄下以.CONF結尾都可以配置  
  5.    * ldconfig -v | grep mysql               // 重新載入所有庫檔案的路徑 沒有mysql的庫檔案  
  6.      vim /etc/ld.so.conf.d/mysql.conf  
  7.      /usr/local/mysql/lib                   // 建立mysql.conf 檔案 在檔案中添加這些內容     
  8.    * ldconfig -v | grep mysql               // 修改之後在重新載入一次 否則伺服器不知道  
view plainprint?
  1. //標頭檔的配置  
  2.   庫檔案有哪些函數以及函數在別人編寫程式的時候怎麼調用 怎麼傳遞參數 參數類型是什麼 傳回值類型是是什麼 必須找到庫檔案所對應的標頭檔 庫檔案對應的標頭檔在/  usr/include      
  3.    * ls /usr/include/  
  4.    * ln -sv /usr/local/mysql/include /usr/include/mysql    // 標頭檔的輸出  
  5.    * vim /etc/man  
  6.    * vim /etc/man.config                                   // 添加Man  
  7.      MANPATH /usr/local/mysql/man  
  8.    
  9.  OK! 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.