cat /etc/redhat-release
CentOS Linux release 7.2.1511 (Core)
- 更新
- yum update
- 安裝常用工具 (非必要)
- yum install mlocate
- yum install wget
- yum install zip unzip
- yum install ntpdate
- 關閉 SELINUX
- 調整系統時鐘
- ntpdate time.stdtime.gov.tw
對時 - hwclock -w
寫入 BIOS - 寫成一行
ntpdate time.stdtime.gov.tw | hwclock -w - 安裝 Apache Web Server
- yum install httpd
- systemctl start httpd.service
立即啟動服務 - systemctl status httpd.service
檢查服務狀態 - systemctl enable httpd.service
開機後自動啟動服務 - 安裝 MariaDB Database Server
- yum install mariadb-server mariadb
- systemctl start mariadb.service
立即啟動服務 - systemctl status mariadb.service
檢查服務狀態 - systemctl enable mariadb.service
開機後自動啟動服務 - mysql_secure_installation
設定資料庫:設定(變更)資料庫管理者 (root) 密碼、移除使用者 anonymous、關閉 root 遠端登入、移除資料表 test、重新載入資料表權限。 - 安裝 PHP Script Language
- yum install php php-gd php-mbstring php-mysql
- systemctl restart httpd.service
重新啟動 httpd 服務 - php -v
查詢 PHP 版本資訊 - 開防火牆
- firewall-cmd --permanent --zone=public --add-service=http
開啟 http 通道 - firewall-cmd --permanent --zone=public --add-service=https
開啟 https 通道 - firewall-cmd --reload
重新載入防火牆規則 - 開伺服器網頁測試
沒有留言:
張貼留言