2016年11月20日 星期日

Linux 安裝 LAMP Server + phpMyAdmin

sudo apt-get install tasksel


sudo tasksel install lamp-server


啟動Apache
sudo service apache2 start

中止Apache
sudo service apache2 stop

重新啟動Apache
sudo service apache2 restart


sudo apt-get install phpmyadmin
密碼跟安裝LAMP SERVER時候一樣喔

安裝過程需要設定phpMyAdmin,一開始會要求選擇網頁伺服器,因為我們裝的LAMP是使用Apache作為網頁伺服器,所以選擇「apache2」。用鍵盤的空白鍵(Space)來選擇項目,用Enter鍵確認選擇。

2016年11月19日 星期六

Linux appache2 不要讓其他人瀏覽網站目錄

/etc/apache2/apache2.conf

Options Indexes FollowSymLinks
AllowOverride None
Require all granted

TO

Options FollowSymLinks
AllowOverride None
Require all granted

sudo service apache2 restart

[CentOS] httpd port 9000 to 80

<VirtualHost *:80>     ServerName domain.name     ProxyRequests Off     ProxyVia Block     ProxyPreserveHost On     <Proxy *...