#########################yum源搭建lamp########################################
1、安裝包:
目錄路徑:/var/www/html
2、關閉iptables:(或在規則中開放80埠)
service iptables stop
3、為mysql設定密碼:
進入mysql
use mysql;
update user set password=password('123') where user='root';
flush privileges;
<?php
$link=mysql_connect('localhost','root','123');
if(!$link) echo "fail";
else echo "success";
mysql_close();
phpinfo();
?>
5、測試
第一排顯示成功說明正常連線到mysql
#########################原始碼搭建lamp########################################
原始碼包:
安裝mysql:
安裝apache:
安裝php:
tar -zxvf php-5.3.22.tar.gz
cd php-5.3.22
./configure --prefix=/usr/local/php --with-libxml-dir=/usr/local/libxml2 --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/etc
make && make install
2、聯絡apache和php
重啟apache服務
3、為mysql設定密碼:
進入mysql
use mysql;
update user set password=password('123') where user='root';
flush privileges;
4、修改iptables規則
加入-a input -m state --state new -m tcp -p tcp --dport 80 -j accept
重啟iptables service iptables restart
測試同上4,5 (預設目錄/usr/local/apache2/htdocs/)
開機啟動:將啟動命令加入到/etc/rc.d/rc.local
ubuntu下如何獲取原始碼包和原始碼
如何獲取ubuntu原始碼包裡面的原始碼?1 在獲取原始碼包之前,確保在軟體源配置檔案 etc apt sources.list中新增了deb src項 2 使用如下命令獲取 原始碼包的詳細資訊 sudo apt cache showsrc 這用來查詢當前映象站點中是否有該原始碼包。並在命令執行過程...
ubuntu下如何獲取原始碼包和原始碼
如何獲取ubuntu原始碼包裡面的原始碼?1 在獲取原始碼包之前,確保在軟體源配置檔案 etc apt sources.list中新增了deb src項 2 使用如下命令獲取 原始碼包的詳細資訊 sudo apt cache showsrc 這用來查詢當前映象站點中是否有該原始碼包。並在命令執行過程...
製作原始碼補丁和給原始碼打補丁
1.製作原始碼補丁 假設原始的原始碼目錄為src code,修改後的原始碼目錄為src code new。通過如下命令,就可以製作出原始碼補丁檔案changes.patch。changes.patch中記錄了src code與src code new之間的差異。root localhost diff...