程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> linux9.0+apache+php+mysql安裝與配置

linux9.0+apache+php+mysql安裝與配置

編輯:MySQL綜合教程

www.mysql.com , www.apache.org , www.php.net下載mysql,apache,php的最新

源碼包
mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz
httpd-2.0.52.tar.gz
php-5.0.2.tar.gz

我們先來安裝mysql
cp mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz /usr/local/
tar -zxvf mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz
cd mysql-standard-5.0.1-alpha-pc-linux-i686/
emacs INSTALL-BINARY 獲得安裝信息
groupadd mysql
useradd -g mysql mysql
cd /usr/local/
ln -s mysql-standard-5.0.1-alpha-pc-linux-i686/ mysql 建立軟鏈接
./scripts/mysql_install_db --user=mysql
chown -R root .
chown -R mysql data
chgrp -R mysql .
./bin/mysqld_safe --user=mysql & 從後台啟動mysql,這時會看到
[1] 3879
[root--1014--/usr/local/mysql]Starting mysqld daemon with databases from /usr/local/mysql/data
證明已經成功,可以用ps -aux │ grep mysql 可以看到。
安裝成功

再來安裝apache
tar -zxvf httpd-2.0.52.tar.gz
cd httpd-2.0.52
emacs INSTALL 獲得一些安裝信息
./configure --enable-so --enable-so
make ; make install
cd /usr/local/apache2/bin
./apachectl start
httpd: Could not determine the servers fully qualified domain name, using 127.0.0.1 for ServerName
這時打開浏覽器,輸入127.0.0.1或你的電腦名,我的為tian1118,然後你就可以看到漂亮的羽毛,證明apache安裝成功,而且可以正確顯示出簡體中文,真爽。
再仔細看看,好像有點問題。
cd /usr/loca/apache2/conf/
cp httpd.conf beifei 備份一下,免得自己改錯了。
emacs httpd.conf
找到#ServerName www.example.com:80
把它改為ServerName 127.0.0.1
../bin/apachectl restart 沒有出錯提示證明成功

再來安裝php
tar -zxvf php-5.0.2.tar.gz
cd php-5.0.2
emacs INSTALL 獲得一些安裝信息
./configure --with-apxs2=/usr/local/httpd/bin/apxs --with-mysql=/usr/local/mysql
如果出現如下證明快成功了。
+--------------------------------------------------------------------+
│ License: │
│ This software is subject to the PHP License, available in this │

│ distribution in the file LICENSE. By continuing this installation │
│ process, you are bound by the terms of this license agreement. │
│ If you do not agree with the terms of this license, you must abort │
│ the installation process at this point. │
+--------------------------------------------------------------------+

Thank you for using PHP.

make
make install
cp php.ini-dist /usr/local/lib/php.ini
cp:是否覆蓋‘/usr/local/lib/php.ini’? y


php與apache整合
emacs /usr/local/apache2/conf/httpd.conf 找到DirectoryIndex改為如下:
DirectoryIndex index.html index.php index.htm index.html.var
找到
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
在它後面添加
AddType application/x-httpd-php .php
/usr/local/apache2/bin/apachectl restart

測試php
emacs /usr/local/apache2/htdocs/index.php
添加
打開浏覽器,輸入
http://127.0.0.1/index.php
可以看到關於php的信息,證明php安裝成功。

結束語:強烈建議大家在安裝軟件時用源碼安裝,雖然很麻煩,但是你知道你都做了什麼,知道你把軟件包安裝到了哪,還有出了問題大家不要著急,先看出錯提示,查看出錯信息,利用自己所學linxu知識判斷是哪出錯了,就比如我在安裝php時,我想先安裝apache,然後php,最後mysql,當我在安裝php時加了參數--with-mysql=/usr/local/mysql,在安裝時就會出錯,還有,在安裝php時它還提示我的libxm12的版本太低,我的是RD9.0,內核2.4.20-8,我用rpm -qa │ grep libxm12時,版本才1.,然後下載了libxml2-2.6.10.tar.gz,安裝後再安裝php就成功了,。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved