CentOS6.5 编译安装lnmp环境

前端之家收集整理的这篇文章主要介绍了CentOS6.5 编译安装lnmp环境前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

网上搜来的教程如下

代码如下:

因为编译安装libmcrypt一直出错,运行rpm –q libmcrypt 查看安装的rpm包 发现失败

所以参考了另一篇安装lnmp的文章

代码如下:

安装libiconv、libmcrypt、(#没安装libltdl)、mhash、(#安装make没效果mcrypt),bison

代码如下:

安装cmake

代码如下:

准备用户、目录

代码如下:
MysqL useradd -g MysqL MysqL groupadd www useradd -g www www mkdir -p /data/MysqL chown -R MysqL:MysqL /data/MysqL mkdir -p /data/www chown -R www:www /data/www

安装MysqL

编译:

代码如下:
MysqL-5.6.22.tar.gz cd MysqL-5.6.22 cmake -DCMAKE_INSTALL_PREFIX=/usr/local/MysqL -DMysqL_DATADIR=/data/MysqL -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_MEMORY_STORAGE_ENGINE=1 -DWITH_MYISAM_STORAGE_ENGINE=1 -DSYSCONFDIR=/usr/local/MysqL/etc/ -DWITH_SSL=yes -DDEFAULT_CHARSET=utf8 -DDEFAULT_COLLATION=utf8_general_ci -DWITH_READLINE=on make && make install ln -s /usr/local/MysqL/lib/lib* /usr/lib/

配置:

代码如下:
MysqL/scripts/MysqL_install_db --basedir=/usr/local/MysqL --datadir=/data/MysqL/ --user=MysqL

自启动

代码如下:
MysqL/support-files/MysqL.server /etc/rc.d/init.d/MysqLd chkconfig --add MysqLd chkconfig MysqLd on /etc/rc.d/init.d/MysqLd start cd /opt/MysqL/ bin/MysqL_secure_installation #设置MysqL账号密码

安装PHP

编译:

代码如下:
PHP cd /usr/local/src tar zxvf PHP-5.3.5.tar.gz cd PHP-5.3.5 ./configure --prefix=/usr/local/PHP --with-config-file-path=/usr/local/PHP/etc --with-MysqL=/opt/MysqL --with-MysqLi=/usr/local/MysqL/bin/MysqL_config --with-iconv-dir=/usr/local --with-freetype-dir --with-jpeg-dir --with-png-dir --with-zlib --with-libxml-dir=/usr --enable-xml --disable-rpath --disable-safe-mode --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --with-curl --with-curlwrappers --enable-mbregex --enable-fpm --enable-mbstring (--with-mcrypt) --with-gd --enable-gd-native-ttf --with-openssl --with-mhash --enable-pcntl --enable-sockets (--with-ldap --with-ldap-sasl )--with-xmlrpc --enable-zip --enable-soap ./configure --prefix=/usr/local/PHP --enable-fpm --with-iconv=/usr/local/bin/libiconv \--with-mcrypt=/usr/local/bin/libmcrypt \--enable-mbstring --disable-pdo --with-curl --disable-debug --disable-rpath \--enable-inline-optimization --with-bz2 --with-zlib --enable-sockets \--enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex \--with-mhash --enable-zip --with-pcre-regex --with-MysqL --with-MysqLi \--with-gd --with-jpeg-dir make && make install cp PHP.ini-development /usr/local/PHP/etc/PHP.ini #复制配置文件

配置PHP-fpm

代码如下:
PHP cp etc/PHP-fpm.conf.default etc/PHP-fpm.conf vi etc/PHP-fpm.conf pid = run/PHP-fpm.pid emergency_restart_threshold = 10 emergency_restart_interval = 1m process_control_timeout = 5s

148 149行

代码如下:

3)拷贝PHP配置文件PHP默认的配置文件路径

4)更改配制文件(设置时区)

代码如下:
PHP/lib/PHP.ini

919 行,时区改为PRC,就是中华人民共和国。

date.timezone = PRC

安装Nginx 安装PCRE

代码如下:
mv pcre-8.36.tar.gz\?r\=http\:%2F%2Fsourceforge.net%2Fprojects%2Fpcre%2Ffiles%2Fpcre%2F8.36%2F pcre-8.36.tar.gz tar zxvf pcre-8.36.tar.gz cd pcre-8.36 && ./configure && make && make install

安装zlib

代码如下:
tar zxvf zlib-1.2.8.tar.gz && cd zlib-1.2.8 && ./configure && make && make install

安装ssl

代码如下:
tar zxvf openssl-1.0.1j.tar.gz

安装nginx

代码如下:
Nginx tar zxvf Nginx-1.7.8.tar.gz ./configure --user=www --group=www --prefix=/usr/local/Nginx --with-http_stub_status_module \--pid-path=/usr/local/Nginx/Nginx.pid --with-http_ssl_module \--with-pcre=/usr/local/src/pcre-8.36 \--with-zlib=/usr/local/src/zlib-1.2.8 \--with-openssl=/usr/local/src/openssl-1.0.1j && make && make install

配置Nginx

代码如下:
Nginx/conf/Nginx.conf

启动服务器

代码如下:
Nginx/sbin/Nginx /opt/PHP/sbin/PHP-fpm。

原文链接:https://www.f2er.com/php/23060.html

猜你在找的PHP相关文章