搭建簡單的LAMP中出現的小問題
阿新 • • 發佈:2018-03-21
apache mysql php
當運行程序的時候發現出現這樣的字符:httpd: Could not reliably determine the server's fully qualified domain name, using www.shifanyong.cn for ServerName 但是服務還是可以啟動、重啟、停止的情況
因為/etc/local/httpd/conf/httpd.conf(安裝目錄,不一定是這個)中,ServerName這個項是註釋項,可以選擇去掉#號,修改後面的域名,也可以在下面添加一行ServerName www.shifanyong.cn:80(這裏當然是要填寫你的域名 )。
出現該問題是因為同時需要安裝依賴包yum -y install ncurses-* cmake安裝時出錯,cmake編譯安裝並不是make和make install ,而是gmake與gmake install
這個是測試php是否安裝成功的代碼,當該頁面出現這個問題的時候,直接去/usr/local/httpd/conf/httpd.conf
à查找AddType application 字符,然後在下面添加AddType application/x-httpd-php .php
à查找 DirectoryIndex這一項,把index.php添加在後面
à重啟Apache服務
搭建簡單的LAMP中出現的小問題