LAMP安裝

  1. yum –y update
  2. shutdown –r now
  3. 設定iptables
  4. 時間校正
    yum –y install ntp 安裝ntp套件
    ntpdate –u time.stdtime.gov.tw ; /sbin/hwclock -w 校正系統時間,並同步寫入bios
  5. 安裝apache、php、mysql
    yum –y install httpd php mysql mysql-server php-mysql php-gd php-mbstring php-mcrypt
  6. Apache設定
    vi /etc/httpd/conf/httpd.conf 將ServerTokens 的OS改為Prod
    chkconfig httpd on 加入啟動列表
    service httpd start 啟動apache
  7. Mysql設定
    vi /etc/my.cnf
    [mysqld]裡加入
    default-character-set = utf8再加入
    [mysql]
    default-character-set = utf8 

    chkconfig mysqld on 加入啟動列表
    service mysqld start 啟動mysql
    mysqladmin –u root password ‘YourPassowrd’ 更改root密碼

本篇發表於 Server。將永久鏈結加入書籤。

發表迴響

您的電子郵件位址並不會被公開。 必要欄位標記為 *

*

您可以使用這些 HTML 標籤與屬性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>