1.Add a login user and group for `mysqld' to run as:爲‘mysqld’增添一(yī)個登陸用戶和組 shell> groupadd mysql shell> useradd -g mysql mysql
2.解壓 shell> gunzip < mysql-5.0.15.tar.gz | tar -xvf - shell> cd mysql-5.0.15 3.Configure the release and compile everything:配置和編譯給configure分(fēn)配可執行文件 shell> chmod +x configure 改變字符集爲 GBK [默認字符集爲ISO-8859-1(Latin1)] shell> ./configure --prefix=/usr/local/mysql --with-charset=gbk shell> make (字符集還有big5、cp1251、cp1257、czech、danish、dec8、dos、euc_kr、gb2312 gbk、german1、hebrew、 hp8、hungarian、koi8_ru、koi8_ukr、latin1、latin2、sjis、swe7、tis620、ujis、usa7、win1251或win1251ukr) 4.安裝所有東西 shell> make install 5.如果你想安裝選項文件,使用當前存在的‘support-files’ 文件夾下(xià)的作爲模闆,例如: shell> cp support-files/my-medium.cnf /etc/my.cnf 6.如果想mysqld每次開(kāi)機自動啓動的話(huà)。cp -r support-files/mysql.server /etc/init.d/就行了 shell> cp -r support-files/mysql.server /etc/init.d/mysql shell> cd /etc/rc.d/init.d shell> chmod +x mysql shell> /sbin/chkconfig --del mysql shell> /sbin/chkconfig --add mysql 7.進入安裝目錄 shell> cd /usr/local/mysql 8.如果你以前沒有安裝過MySQL,你必須創建一(yī)個MySQL準許的表 shell> bin/mysql_install_db --user=mysql 9.将程序的所有權限給‘root’ ,并且把數據目錄的所有權給可以運行‘mysqld’的用戶。假設MySQL的安裝目錄是(‘/usr/local/mysql’),命令如下(xià)所示: 把文件擁有權給‘root’ shell> chown -R root . 把數據目錄擁護權給‘mysql’用戶 shell> chown -R mysql var 把組的權限給'mysql'組 shell> chgrp -R mysql . 10.萬事具備後,你就可以按照下(xià)面的命令測試并運行你的MySQL了: shell> /usr/local/mysql/bin/mysqld_safe --user=mysql & shell> service mysql start 11.在一(yī)切正常後,要做的第一(yī)件事情是更改管理員(yuán)的密碼。你可以運行mysqladmin (請注意,此命令不一(yī)定在你的path中(zhōng),所以最好是轉到此命令的目錄中(zhōng)直接執行): shell> cd bin shell> ./mysqladmin -u root password ********* 12.運行其他用戶訪問本機: shell> ./mysql -u root -p mysql --------------------這裏輸入你剛才修改的管理員(yuán)密碼 mysql> update user set host='' where host='localhost' and user='root'; mysql> exit Bye 13.修改mysql數據庫端口号 shell> vi /etc/my.cnf --------------------修改裏面的 port=**** 爲你需要的端口号 14.重啓應用 shell> service mysql restart - |