Apache Q & A 問題處理
BUBU 記錄 Apache
在設定上所遇到的問題
問題內容-DefaultRuntimeDir
BUBU 在 Debian
環境上有安裝 Apache
服務,在做檢查時出現錯誤訊息
- 問題內容如下
[Sat Sep 07 15:10:20.998275 2024] [core:warn] [pid 9278:tid 9278] AH00111: Config variable ${APACHE_RUN_DIR} is not defined
apache2: Syntax error on line 80 of /etc/apache2/apache2.conf: DefaultRuntimeDir must be a valid directory, absolute or relative to ServerRoot
解決程過
- 此問題是因為
Apache
環境變數所造成,只要新增加環境變數可以測試就會正常了
source /etc/apache2/envvars
- 在下一次檢查指令
apache2 -S
- 檢查後會出現下面的資訊
補充說明
備註
參考相關網頁
問題內容-RewriteEngine'
BUBU 設定 GLPI
服務出現以下的訊息,是說您沒有啟用 RewriteEngine
模組
- 問題內容如下
AH00526: Syntax error on line 4 of /etc/apache2/conf-enabled/glpi.conf:
Invalid command 'RewriteEngine', perhaps misspelled or defined by a module not included in the server configuration
解決程過
- 啟用
RewriteEngine
模組
sudo a2enmod rewrite
- 在下一次檢查指令就會正常了
apache2 -t