環(huán)境:
成都創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、網(wǎng)站建設(shè)、外貿(mào)營(yíng)銷網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)忠縣,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220Centos 7.0
Apache 2.2.27
Mysql 5.1.72
libiconv 1.14
##Apache請(qǐng)自行使用編譯安裝.內(nèi)容從我自己的word復(fù)制過(guò)來(lái)的,wold里面是好的,有的地方復(fù)制過(guò)來(lái)就重疊了,看的時(shí)候注意下
1 解壓mysql
tar zxvf mysql-5.1.72.tar.gz
cd mysql-5.1.72/
[root@fangshaoxia support-files]# useradd-M -s /sbin/nologin mysql
2 新建一個(gè)文件填入如下參數(shù),可以直接復(fù)制,參數(shù)看個(gè)人所需求吧,不一定要這些,還有很多參數(shù)。
vim 1.txt
./configure \
--prefix=/application/mysql5.1.72 \
--with-unix-socket-path=/application/mysql5.1.72/tmp/mysql.sock\
--localstatedir=/application/mysql5.1.72/data\
--enable-assembler \
--enable-thread-safe-client \
--with-mysqld-user=mysql \
--with-big-tables \
--without-debug \
--with-pthread \
--enable-assembler \
--with-extra-charsets=complex \
--with-readline \
--with-ssl \
--with-embedded-server \
--enable-local-infile \
--with-plugins=partition,innobase \
--with-mysqld-ldflags=-all-static \
--with-client-ldflags=-all-static
3 開(kāi)始編譯mysql
cat 1.txt | bash
提示:
checkingfor termcap functions library... configure: error: No curses/termcap libraryfound
解決:yum install ncurses-static.x86_64 -y
[root@fangshaoxia mysql-5.1.72]# echo $?
0
##查看是否有錯(cuò)誤,如果非零說(shuō)明有錯(cuò)誤
[root@fangshaoxia mysql-5.1.72]# make
[root@fangshaoxia mysql-5.1.72]# echo $?
[root@fangshaoxia mysql-5.1.72]#make install
[root@fangshaoxia mysql-5.1.72]# echo $?
[root@fangshaoxia mysql-5.1.72]# cd support-files/
[root@fangshaoxia support-files]# cp my-medium.cnf /etc/my.cnf
[root@fangshaoxia support-files]# cd /application/
[root@fangshaoxia application]# ln -s /application/mysql5.1.72/ mysql
##調(diào)優(yōu)去版本號(hào)
[root@fangshaoxia bin]# cd /application/mysql/bin/
[root@fangshaoxia bin]# mkdir /application/mysql/data -p
提示:這里的路徑一定要和上面編譯的路勁一樣否則會(huì)出錯(cuò)
[root@fangshaoxiabin]#./mysql_install_db --basedir=/application/mysql --datadir=/application/mysql/data --user=mysql
提示:mysql_install_db里還有其他參數(shù)可以通過(guò)”./mysql_install_db --help”,一定不能忘記”./”
[root@fangshaoxiabin]# cd /application/
[root@fangshaoxiaapplication]# chown -R mysql mysql5.1.72/
[root@fangshaoxiabin]# echo "export PATH=/application/mysql5.1.72/bin/:$PATH" >>/etc/profile
[root@fangshaoxiabin]# source /etc/profile
[root@fangshaoxia support-files]# cd /home/tools/LAMP/mysql-5.1.72/support-files/
[root@fangshaoxiasupport-files]# cp mysql.server /etc/init.d/mysqld
[root@fangshaoxia support-files]# chmod +x /etc/init.d/mysqld
[root@fangshaoxia support-files]#/etc/init.d/mysqld start
[root@fangshaoxia support-files]# chkconfig --add mysqld
[root@fangshaoxia support-files]# chkconfig mysqld on
[root@fangshaoxia support-files]#mysql_secure_installation
提示:出現(xiàn)的問(wèn)題看情況和需求而定
出現(xiàn)兩個(gè)OK,而且沒(méi)有其他問(wèn)題就是好了,安全初始化成功
[root@fangshaoxia support-files]# mysql -uroot -p
##輸入前面設(shè)置的密碼就可以進(jìn)入mysql了
下面開(kāi)始安裝PHP
1 解壓
[root@fangshaoxia LAMP]# tar zxvf php-5.3.27.tar.gz
[root@fangshaoxia LAMP]# tar zxvf libiconv-1.14.tar.gz
[root@fangshaoxia LAMP]# cd libiconv-1.14/
[root@fangshaoxia libiconv-1.14]#./configure --prefix=/usr/local/libiconv
[root@fangshaoxia libiconv-1.14]#make
提示:錯(cuò)誤./stdio.h:1010:1: error: ‘gets’undeclared here (not in a function)
_GL_WARN_ON_USE (gets, "gets is asecurity hole - use fgets instead");
解決:
[root@fangshaoxia libiconv-1.14]# vim srclib/stdio.in.h
將698行的代碼:_GL_WARN_ON_USE (gets, "gets is a security hole - use fgetsinstead");
替換為:
#if defined(__GLIBC__)&& !defined(__UCLIBC__) && !__GLIBC_PREREQ(2, 16)
_GL_WARN_ON_USE (gets, "gets is asecurity hole - use fgets instead");
#endif
##這個(gè)問(wèn)題centos6.8里沒(méi)有遇到過(guò)
[root@fangshaoxia LAMP]# cd php-5.3.27/
[root@fangshaoxia php-5.3.27]# yum install libxml2-devel.x86_64 libxml2.x86_64 openssl-devel.x86_64 libcurl-devel.x86_64 libjpeg-turbo.x86_64 libjpeg-turbo-devel.x86_64 png* libpng-devel.x86_64 freetype.x86_64 freetype-devel.x86_64 libxslt-devel.x86_64 libxslt.x86_64
##以上是安裝PHP所必須的包,一個(gè)不能落下
2 新建一個(gè)文件填入如下參數(shù),可以直接復(fù)制,參數(shù)看個(gè)人所需求吧,不一定要這些,還有很多參數(shù)。
[root@fangshaoxia php-5.3.27]# vim 1.txt
./configure \
--prefix=/application/php5.3.27 \
--with-apxs2=/application/apache/bin/apxs \
--with-mysql=/application/mysql \
--with-xmlrpc \
--with-openssl \
--with-zlib \
--with-freetype-dir \
--with-gd \
--with-jpeg-dir \
--with-png-dir \
--with-iconv=/usr/local/libiconv \
--enable-short-tags \
--enable-sockets \
--enable-zend-multibyte \
--enable-soap \
--enable-mbstring \
--enable-static \
--enable-gd-native-ttf \
--with-curl \
--with-xsl \
--enable-ftp \
--with-libxml-dir
##上面apache的路勁和mysql路徑必須正確。
[root@fangshaoxiaphp-5.3.27]# make && make installmake
[root@fangshaoxiaphp-5.3.27]# cd /application/
[root@fangshaoxia application]# ln -s php5.3.27/ php
[root@fangshaoxia application]# cd -
/home/tools/LAMP/php-5.3.27
[root@fangshaoxia php-5.3.27]# cp php.ini-production /application/php/lib/php.ini
4編輯httpd配置文件
[root@fangshaoxia php-5.3.27]# cd /application/apache/conf/
[root@fangshaoxia conf]# vim httpd.conf
DirectoryIndex index.html index.php
##在169行添加index.php
AddTypeapplication/x-httpd-php .php .phtml(注意.php和.phtml的空格)
AddTypeapplication/x-httpd-php-source .phps(注意.phps前的空格)
##在311行添加上面兩個(gè)配置
去站點(diǎn)下添加一個(gè)index.php頁(yè)面,測(cè)試PHP和mysql的工作狀態(tài)是否OK
vim index.php
//$link_id=mysql_connect('主機(jī)名','用戶','密碼');
$link_id=mysql_connect('localhost','root','*******') or mysql_error();
if($link_id){
echo "mysqlsuccessful by fangshaoxiade lake !";
}else{
echo mysql_error();
}
?>
[root@fangshaoxia num1]# /application/apache/bin/apachectl graceful
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。