XAMPP有也是可以在CentOS7上安裝的,裝好之後預設是只有本機(localhost)才能進入phpmyadmin,如果使用外部IP或網址則會顯示以下畫面 要請你去修改 httpd-xampp.conf 這支檔,之前是有寫過在windows上安裝Xampp修改httpd-xampp.conf的教學,如果您是在windows上安裝Xampp請參考這篇教學 http://neodw.com/neil/modules/tadnews/index.php?nsn=114#A 如果是在CentOS7上安裝則修改方式略有不同,方法如下: 1、找到以下路徑檔案,用筆記本打開編輯 /opt/lampp/etc/extra/httpd-xampp.conf 2、找到以下檔案 # since XAMPP 1.4.3 <Directory "/opt/lampp/phpmyadmin"> AllowOverride AuthConfig Limit Require local ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var </Directory> 替換成以下的設定 <Directory "/opt/lampp/phpmyadmin"> AllowOverride AuthConfig Limit Order allow,deny Allow from all Require all granted ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var </Directory> 存檔後,需要重啟伺服器,請用ssh遠端連線或直接在CentOS輸入以下指令 /opt/lampp/xampp restart 如重啟伺服器成功,會出現以下畫面 之後再進入phpmyadmin就會顯示內容了。 如需設定root的密碼請參考這篇教學 http://neohsuxoops.blogspot.tw/2017/10/xamppmysqlphpmyadmin.html 教學撰寫: 徐嘉裕 ...