我的LAMP實現過程——MySql

來源:互聯網
上載者:User

安裝MySQL

# cd /usr/down
執行 ls -l 可以列出目前的目錄的檔案清單
 
# groupadd mysql

# useradd -g mysql mysql (如果在安裝工具包時候,選擇全部安裝,那麼這兩個添加使用者組命令將會提示使用者組已經存在)

# tar -zxvf mysql-5.0.37.tar.gz

# cd mysql-5.0.37

# ./configure --prefix=/server/mysql --with-charset=gb2312 --with-extra-charsets=gbk,gb2312
其中 prefix 參數指明mysql安裝目錄.我們將它安裝在/server/mysql目錄下.

# make

# make install

# /server/mysql/bin/mysql_install_db --user=mysql

# cp support-files/my-medium.cnf /etc/my.cnf
將mysql配置文檔複製到/etc/目錄下並儲存為my.cnf

# cp support-files/mysql.server /etc/rc.d/init.d/mysqld

# chmod 700 /etc/rc.d/init.d/mysqld

# chkconfig --add mysqld

# cd /server/mysql
進入mysql安裝目錄.
並執行 chown -R root .
注意:不要漏了後面的 "."

#cd server

# chmod 750 mysql -R
# chgrp mysql mysql -R

# chown mysql mysql/var -R //建立var目錄,以便裝載錯誤檔案,如果安裝路徑為--prefix=/server/mysql ,則在mysql目錄下查詢var檔案夾,沒有則手動建立,如果未指定安裝路徑,則預設安裝在/usr/local/下,在此建立var。

# /server/mysql/bin/mysqld_safe --user=mysql &
啟動mysql

在出現 mysqld ended 的時候.點擊斷行符號.回到命令列

#bin/mysql -u root -p
登陸mysql

系統會提示輸入密碼.由於我們安裝時沒有設定密碼.所以預設密碼為空白.直接點擊斷行符號進入
 

出現如下提示則說明mysql安裝好並可以使用了.

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 65
Server version: 5.0.37-log Source distribution

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 

現在來測試一下mysql.
輸入 selcet version();
查看mysql的版本
注意:sql語句要以";"結尾

顯示 mysql-5.0.37

mysql>show character set;
確定是否安裝了gbk和gb2312字型,沒有就重新./configure&make&make install三步驟

quit;

基本的MySql就配置完了,如果要根據需求修改配置的參數可以參考:
http://www.cnblogs.com/ovliverlin/articles/832648.html

相關文章

聯繫我們

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