LAMP是一個(gè)搭建動態(tài)網(wǎng)站的開源軟件架構(gòu),組成了一個(gè)強(qiáng)大的Web應(yīng)用程序平臺,在軟件項(xiàng)目方面的投資成本低,因此受到整個(gè)IT行業(yè)界的關(guān)注及大量的公司使用。
成都創(chuàng)新互聯(lián)公司專注于洪洞網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供洪洞營銷型網(wǎng)站建設(shè),洪洞網(wǎng)站制作、洪洞網(wǎng)頁設(shè)計(jì)、洪洞網(wǎng)站官網(wǎng)定制、重慶小程序開發(fā)公司服務(wù),打造洪洞網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供洪洞網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
1.LAMP企業(yè)安裝配置:構(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)... 失敗:未知的名稱或服務(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
? ? DirectoryIndex? index.php ndex.html index.htm
?AddType application/x-httpd-php? .php
[root@lap htdocs]# cat >/usr/local/apache2/htdocs/index.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 小結(jié):如何優(yōu)化LAMP架構(gòu),如何拆分LAMP架構(gòu)以,怎么把Apache和MySQL分開放在不同的機(jī)器上?LAMP構(gòu)架拆分的目的在于緩解單臺服務(wù)器的壓力,可以將PHP、MySQL單獨(dú)安裝至多臺服務(wù)器上,本次實(shí)戰(zhàn)實(shí)現(xiàn)了LAP+MySQL的架構(gòu),也即是把MySQL單獨(dú)拆分出去。
網(wǎng)站名稱:LAMP企業(yè)架構(gòu)實(shí)戰(zhàn)
鏈接分享:http://weahome.cn/article/jgehci.html