您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)linux9.0+apache+php+mysql安裝與配置是怎么樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
, , mysql,apache,php的最新
包
mysql-standard-5.0.1-alpha-snapshot-pc-linux-i686.tar.gz
httpd-2.0.52.tar.gz
-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
證明已經(jīng)成功,可以用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
把它改為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-=/usr/local/mysql
如果出現(xiàn)如下證明快成功了。
+--------------------------------------------------------------------+
│ 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
添加
打開瀏覽器,輸入
可以看到關(guān)于php的信息,證明php安裝成功。
結(jié)束語:強烈建議大家在安裝軟件時用源碼安裝,雖然很麻煩,但是你知道你都做了什么,知道你把軟件包安裝到了哪,還有出了問題大家不要著急,先看出錯提示,查看出錯信息,利用自己所學(xué)linxu知識判斷是哪出錯了,就比如我在安裝php時,我想先安裝apache,然后php,最后mysql,當我在安裝php時加了參數(shù)--with-mysql=/usr/local/mysql,在安裝時就會出錯,還有,在安裝php時它還提示我的libxm12的版本太低,我的是RD9.0,內(nèi)核2.4.20-8,我用rpm -qa │ grep libxm12時,版本才1.,然后下載了libxml2-2.6.10.tar.gz,安裝后再安裝php就成功了,。
看完上述內(nèi)容,你們對linux9.0+apache+php+mysql安裝與配置是怎么樣的有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。