您好,登錄后才能下訂單哦!
這篇文章給大家分享的是搭建LAMP架構(gòu)的詳細(xì)教程,相信大部分人都還不知道怎么搭建,為了讓大家學(xué)會(huì),給大家總結(jié)了以下內(nèi)容,話不多說,一起往下看吧。
LAMP是一個(gè)搭建動(dòng)態(tài)網(wǎng)站的開源軟件架構(gòu),組成了一個(gè)強(qiáng)大的Web應(yīng)用程序平臺(tái),在軟件項(xiàng)目方面的投資成本低,因此受到整個(gè)IT行業(yè)界的關(guān)注及大量的公司使用。
1.構(gòu)建LAMP架構(gòu)有兩種方法,一是使用yum在線安裝,另外一種是基于源碼編譯安裝。
1)yum在線安裝
#yum install httpd httpd-devel mysql mysql-server mysql-devel php php-devel php-mysql -y
#service httpd restart
#service mysqld restart
2)基于源碼安裝:LAP(CentOS+Apache+PHP):192.168.153.142
Apache: https://blog.51cto.com/sky9896/2467218
MySQL: https://blog.51cto.com/sky9896/2467552
PHP: 源碼編譯安裝
[root@lap tools]# wget http://mirrors.sohu.com/php/php-5.3.28.tar.gz
--2020-01-20 10:12:00-- http://mirrors.sohu.com/php/php-5.3.28.tar.gz
正在解析主機(jī) mirrors.sohu.com (mirrors.sohu.com)... 失?。何粗拿Q或服務(wù)。
wget: 無法解析主機(jī)地址 “mirrors.sohu.com”
[root@lap tools]# cat /etc/resolv.conf
# Generated by NetworkManager
nameserver 202.101.224.68
nameserver 8.8.8.8
[root@lap tools]# tar -zxf php-5.3.28.tar.gz
[root@lap tools]# cd php-5.3.28
[root@lap php-5.3.28]#
[root@lap php-5.3.28]# ./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-mysql=/usr/local/mysql/
...................
configure: error: xml2-config not found. Please check your libxml2 installation.
[root@lap php-5.3.28]# yum install libxml2 libxml2-devel -y
[root@lap php-5.3.28]# ./configure --prefix=/usr/local/php5 --with-config-file-path=/usr/local/php5/etc --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-mysql=/usr/local/mysql/
....................
Thank you for using PHP.
[root@lap php-5.3.28]# make
In file included from /tools/php-5.3.28/ext/standard/basic_functions.c:49:0:
/tools/php-5.3.28/Zend/zend_language_parser.h:317:5: 錯(cuò)誤:與‘zendparse’類型沖突
int zendparse (void);
/tools/php-5.3.28/Zend/zend_globals_macros.h:35:5: 附注:‘zendparse’的上一個(gè)聲明在此
int zendparse(void *compiler_globals);
make: *** [ext/standard/basic_functions.lo] 錯(cuò)誤 1
[root@lap Zend]# pwd
/tools/php-5.3.28/Zend
[root@lap Zend]# vim zend_language_parser.h
#int zendparse (void); #可以刪除此條語句
int zendparse(void *compiler_globals); #添加該條語句
[root@lap php-5.3.28]# make
..................
Build complete.
Don't forget to run 'make test'.
[root@lap php-5.3.28]# make install
.........
/tools/php-5.3.28/build/shtool install -c ext/phar/phar.phar /usr/local/php5/bin
ln -s -f /usr/local/php5/bin/phar.phar /usr/local/php5/bin/phar
Installing PDO headers: /usr/local/php5/include/php/ext/pdo/
[root@lap /]# vim /etc/php.ini
LoadModule php5_module modules/libphp5.so
<IfModule dir_module>
DirectoryIndex index.php ndex.html index.htm
</IfModule>
AddType application/x-httpd-php .php
[root@lap htdocs]# cat >/usr/local/apache2/htdocs/index.php <<EOF
> <?php
> phpinfo();
> ?>
> EOF
2.配置Discuz PHP討論安裝:LAP(CentOS+Apache+PHP):192.168.153.142
[root@lap tools]# unzip Discuz_X3.4_SC_UTF8.zip -d /usr/local/apache2/htdocs/
bash: unzip: 未找到命令
[root@lap tools]# yum install unzip
[root@lap tools]# unzip Discuz_X3.4_SC_UTF8.zip -d /usr/local/apache2/htdocs/
[root@lap bbs]# unzip Discuz_X3.4_SC_UTF8.zip -d /usr/local/apache2/htdocs/bbs/
[root@lap tools]# cd /usr/local/apache2/htdocs/bbs/
[root@lap bbs]# mv upload/* .
[root@lap bbs]# chmod 757 -R data/ uc_server/ config/ uc_client/
3.MySQL數(shù)據(jù)庫相關(guān)配置:192.168.153.143
MySQL [(none)]> create database ultrax; #先創(chuàng)建初始化數(shù)據(jù)庫
MySQL [(none)]> grant all on ultrax.* to root@'192.168.153.142' identified by "sky9890"; #授權(quán)
#以上兩步驟很重要,否則報(bào)以下錯(cuò)誤:
4.Discuz PHP討論安裝過程:LAP(CentOS+Apache+PHP):192.168.153.142
關(guān)于搭建LAMP架構(gòu)的詳細(xì)教程就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。