安裝httpd會自動安裝一下依賴包:
進入配置介面vi httpd.conf
把裡面的 allowoverride none 全部修改為 allowoverride all
順便在 directoryindex index.html 後面加上 index.htm index.php index.shtml
這個是配置預設首頁的
:wq 儲存退出 service httpd restart 重啟 apache 服務,再訪問一下。果然可以訪問了。
重啟伺服器
systemctl start httpd.service #啟動apache
systemctl stop httpd.service #停止apache
systemctl restart httpd.service #重啟apache
systemctl enable httpd.service #設定apache開機啟動
測試。在瀏覽器中輸入相應**。
CentOS 7 安裝 配置
本例為 minimal iso 版本 centos 與 rhel 是同源,所以,在 centos 文件不足時,可以參考 rhel 的文件。本例子環境為 windows 可以使用 fedora liveusb creator 或者 ultraiso 等工具來把系統寫入 u盤,而後通過u盤啟動來安裝系統...
CentOS7 安裝配置 vsftpd
yum install y vsftpdvi etc vsftpd vsftpd.confanonymous enable no anonymous enable yes chroot local user yes 去掉前面的注釋 chroot list enable yes chroot list...
CentOS 7 安裝配置FTP
安裝vsftpd yum install y vsftpd編輯ftp配置檔案 vi etc vsftpd vsftpd.conf anonymous enable no anonymous enable yes chroot local user yes 去掉前面的注釋 chroot list en...