1、獲取root許可權
sudo su
2、安裝mysql5
apt-get install mysql-server mysql-client
3、安裝apache2
apt-get install apache2
apache的預設文件根目錄是在ubuntu上的/var/www目錄 ,配置檔案是/ etc/apache2/apache2.conf。配置儲存在的子目錄在/etc/apache2目錄。
sudo /etc/init.d/apache2 stop 關閉伺服器
sudo /etc/init.d/apache2 start 啟動伺服器
sudo /etc/init.d/apache2 restart 重啟伺服器
4、安裝php5
apt-get install php5 libapache2-mod-php5
安裝完需要重啟
/etc/init.d/apache2 restart
5、訪問預設**檔案根目錄(var/www/)下的檔案info.php
使用
6、php5 獲取sql支援
apt-cache search php5
apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
現在重新啟動apache2的:/etc/init.d/apache2 restart
7、安裝phpmyadmin
phpmyadmin是乙個網路介面,通過它可以管理你的mysql資料庫。
apt-get install phpmyadmin
通過 鏈結 可以訪問。
如果打不開 報404 error
使用如下命令:
cd /var/www/
sudo ln -s /usr/share/phpmyadmin
建立軟鏈結
ubuntu 下配置Web伺服器
ubuntu 下配置web伺服器 1.切換管理員身份 終端 文字介面輸入命令 su根據提示輸入密碼 2.安裝mysql5 apt get install mysql server mysql client 根據提示輸入密碼 3.安裝apache2 apt get installapache2 注 a...
ubuntu伺服器配置
伺服器部署 本人用的是阿里雲 1.用xshell連線伺服器終端 2.用filezilla連線伺服器用來傳檔案 3.更換ubuntu源為阿里源 拷貝sources.list sudo cp etc apt sources.list etc apt sources1.list 刪除配置檔案 sudo r...
Ubuntu下搭建web伺服器
這篇文章是寫在自己通過在網上搜尋教程,在linux下成功搭建了乙個web伺服器後並在區域網下通過另外一台電腦成功訪問後寫下來的。這裡記錄一下留作日後的參考之用。1.切換到管理員身份 sudo su 2.開始安裝mysql5 apt get install mysql server mysql cli...