主機 log 查詢流程紀錄
簡記常用的 web service log 查詢紀錄流程
Apache logs
查看 Apache log
以 root 的身份前往 apache log 資料夾
cd var/logs/httpd/
or
cd /etc/httpd/logs/
Nignx Logs
cd var/logs/nginx/
or
cd /etc/nginx/logs/
Laravel logs
前往 laravel 專案位置,查看 storage log
cd storage/logs/
Check Apache
httpd -t
檢查服務狀態
service httpd status
or
systemctl status httpd
Check nginx
nginx -t
檢查服務狀態
service nginx status
or
systemctl status nginx