Linux 環境編譯安裝MySQL 5.0.45

來源:互聯網
上載者:User

                                            Linux 環境編譯安裝MySQL 5.0.45

                                                      作者:YOUDI(Kevin.U)

       為了日常維護方便我們不選擇rpm方式,而選用tar.gz方式進行安裝。

我們在根檔案系統建立一個目錄/data,存放MYSQL資料:

#mkdir data

添加MySQL使用者與組,.

#groupadd mysql

#useradd -g mysql mysql

下載MySQL 軟體包:

#cd /data

#wget http://mysql.cdpa.nsysu.edu.tw/Downloads/MySQL-5.0/mysql-5.0.45-linux-i686-glibc23.tar.gz

#tar zxvf mysql-5.0.45-linux-i686-glibc23.tar.gz

#mv mysql-5.0.45 mysql5src

編寫編譯的shell指令碼makeit.sh,代碼如下:

#!/bin/sh
CFLAGS="-O2 -mcpu=pentiumpro" CXX=gcc CXXFLAGS="-O2 -mcpu=pentiumpro -felide-constructors" ./configure --prefix=/data/mysql5 --with-charset=gbk --with-extra-charsets=gb2312,big5 --enable-thread-safe-client --enable-local-infile --enable-assembler --with-client-ldflags=-all-static --with-mysqld-ldflags=-all-static --without-debug --without-innodb
make
make install

從以上的makeit.sh指令碼中可以看出mysql安裝路徑為/data/mysql5

執行/data/mysql5src/scripts/mysql_install_db   安裝mysql系統資料表

為了方便日常進行資料維護方便:

cd /data/mysql5

ln -s var /data/var

chown -R mysql:mysql var

cd /data/

chown -R mysql:mysql mysql5

cp /data/mysql5/share/mysql/mysql.server /etc/rc.d/init.d

chkconfig --add mysql.server

加入系統lib:

  vi /etc/ld.so.conf

        加入:/data/mysql5/lib/mysql

        ldconfig



編譯時間會產生各種的軟體包依賴的問題:

最為典型是

ncurses:

ftp://mirror.switch.ch/mirror/fedora/linux/core/5/i386/os/Fedora/RPMS/ncurses-devel-5.5-19.i386.

ftp://mirror.switch.ch/mirror/fedora/linux/core/5/i386/os/Fedora/RPMS/ncurses-5.5-19.i386.rpm

相關文章

聯繫我們

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