1.安裝tasksel
php
sudo apt-get install tasksel
使用tasksel 時只需 sudo taskselhtml
2.安裝lampmysql
sudo tasksel instal lamp-serverweb
打開瀏覽器輸入127.0.0.1 能夠看到apache首頁redis
切換到/var/www/html(默認目錄) 目錄下新建一個test.php文件退出保存,在瀏覽器中就能夠看到其效果
sql
apache修改默認目錄路徑 /etc /apache2/sites-enabled/000-default (修改後須要重啓apache)apache
重啓apache : sudo /etc/init.d/apache2 restart瀏覽器
apache 開啓重寫功能服務器
sudo a2enmod rewrite
ssh
重啓服務器 : sudo /etc/init.d/apache2 restart
修改/etc/apache2/apache2.conf
<Directory /your/path>
AllowOverride All
</Directory>
若還不行:
同時還須要考慮的文件是:your site virtual host file or edit the 000-default in the /etc/apache2/sites-enabled/
<Directory /var/www/mysite/>
AllowOverride all
</Directory>
after this block
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
3.安裝phpmyadmin
sudo apt-get install phpmyadmin
因爲phpmyadmin默認安裝在/usr/share/phpmyadmin,而不是/var/www下,因此只需在終端輸入
sudo ln -s /usr/share/phpmyadmin/ /var/www/
服務啓動以及中止
/etc/init.d/mysql stop
/etc/init.d/mysql start
/etc/init.d/mysql restart
打開mysql客戶端 : mysql -u root -p
查看服務的情況:
1.ps -e | grep 服務名稱 (如:ssh redis)
2.ps -aux | grep 服務名
3.sudo /etc/init.d/redis-server status 查看服務狀態
安裝redis
sudo apt-get install redis-server
啓動redis 客戶端 redis-cli