linux RedHat7LNMP构架搭建论坛三之源码安装PHP和Discuz论坛

PHP安装
#cd ..
#tar zxvf yasm-1.2.0.tar.gz
#cd yasm-1.2.0
#./configure
#make
#make install
安装 libmcrypt源码
#cd ..
#tar zxvf libmcrypt-2.5.8.tar.gz
#cd libmcrypt-2.5.8
#./configure
#make
#make install
安装libvpx源码包
#cd ..
这里解压方式为:tar xjvf
#tar xjvf libvpx-v1.3.0.tar.bz2
#cd libvpx-v1.3.0
#./configure --prefix=/usr/local/libvpx --enable-shared --enable-vp9
#make
#make install
安装tiff源码包
#cd ..
#tar zxvf tiff-4.0.3.tar.gz
#cd tiff-4.0.3
#./configure --prefix=/usr/local/tiff --enable-shared
#make
#make install
安装libpng源码包
#cd ..
#tar zxvf libpng-1.6.12.tar.gz
#cd libpng-1.6.12
#./configure --prefix=/usr/local/libpng --enable-shared
#make
#make install
安装freetype源码包
#cd ..
#tar zxvf freetype-2.5.3.tar.gz
#cd freetype-2.5.3
#./configure --prefix=/usr/local/freetype --enable-shared
#make
#make install
安装jpeg源码包
#cd ..
#tar zxvf jpegsrc.v9a.tar.gz
#cd jpeg-9a
#./configure --prefix=/usr/local/jpeg --enable-shared
#make
#make install
安装libgd源码包
#cd ..
#tar zxvf libgd-2.1.0.tar.gz
#cd libgd-2.1.0
#./configure --prefix=/usr/local/libgd --enable-shared --with-jpeg=/usr/local/jpeg --with-png=/usr/local/libpng --with-freetype=/usr/local/freetype --with-fontconfig=/usr/local/freetype --with-xpm=/usr/ --with-tiff=/usr/local/tiff --with-vpx=/usr/local/libvpx
#make
#make install
安装t1lib源码包
#cd ..
#tar zxvf t1lib-5.1.2.tar.gz
#cd t1lib-5.1.2
把/usr/lib64目录中的函数文件链接到/usr/lib目录中,
#./configure --prefix=/usr/local/t1lib --enable-shared
#make
#make install
#ln -s /usr/lib64/libltdl.so /usr/lib/libltdl.so
#cp -frp /usr/lib64/libXpm.so* /usr/lib/
#cd ..
#tar -zvxf php-5.5.14.tar.gz
#cd php-5.5.14
定义一个名为LD_LIBRARY_PATH的全局环境变量
#export LD_LIBRARY_PATH=/usr/local/libgd/lib
定义配置php服务程序配置文件的保存目录、MySQL数据库服务程序所在目录、MySQL数据库服务程序配置文件所在目录,以及libpng、jpeg、freetype、libvpx、zlib、t1lib等服务程序的安装目录路径,
#./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-mysql-sock=/tmp/mysql.sock --with-pdo-mysql=/usr/local/mysql --with-gd --with-png-dir=/usr/local/libpng --with-jpeg-dir=/usr/local/jpeg --with-freetype-dir=/usr/local/freetype --with-xpm-dir=/usr/ --with-vpx-dir=/usr/local/libvpx/ --with-zlib-dir=/usr/local/zlib --with-t1lib=/usr/local/t1lib --with-iconv --enable-libxml --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --enable-opcache --enable-mbregex --enable-fpm --enable-mbstring --enable-ftp --enable-gd-native-ttf --with-openssl --enable-pcntl --enable-sockets --with-xmlrpc --enable-zip --enable-soap --without-pear --with-gettext --enable-session --with-mcrypt --with-curl --enable-ctype
#make
#make install
需要删除当前默认的配置文件
#rm -rf /etc/php.ini
将php服务程序目录中相应的配置文件复制过来:
#ln -s /usr/local/php/etc/php.ini /etc/php.ini
#cp php.ini-production /usr/local/php/etc/php.ini
#cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf
#ln -s /usr/local/php/etc/php-fpm.conf /etc/php-fpm.conf
将配置文件中第25行左右的pid文件保存目录,
#vim /usr/local/php/etc/php-fpm.conf
25 pid = run/php-fpm.pid
将第148和149行的user与group参数分别修改为www账户和用户组名称:
148 user = www
149 group = www
用于管理php服务的脚本文件复制到/etc/rc.d/init.d
#cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm
更改权限
#chmod 755 /etc/rc.d/init.d/php-fpm
把php-fpm服务程序加入到开机启动项中
#chkconfig php-fpm on

编辑php.ini配置文件,在305行的disable_functions参数后面追加上要禁止的功能。
#vim /usr/local/php/etc/php.ini

305 disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restor e,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,g etservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,po six_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posixgetpwnam,posix getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posixsetgid,posix setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname

#vim /usr/local/nginx/conf/nginx.conf
第2行#删除
2 user www www;
在第45行的index参数后面写上网站的首页名称
45 index index.html index.htm index.php;
修改第69行的脚本名称路径参数,
65 location ~ .php$ {
66 root html;
67 fastcgi_pass 127.0.0.1:9000;
68 fastcgi_index index.php;
路径
69 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
70 include fastcgi_params;
71 }
重启服务
#systemctl restart nginx
#systemctl restart php-fpm
搭建论坛步骤如前
#cd /usr/local/src/
#unzip Discuz_X3.2_SC_GBK.zip
#rm -rf /usr/local/nginx/html/{index.html,50x.html}
#mv upload/
/usr/local/nginx/html/
#chown -Rf www:www /usr/local/nginx/html
更改权限
#chmod -Rf 755 /usr/local/nginx/html
查看结果

**

原文地址:http://blog.51cto.com/13608119/2177318

时间: 2024-10-09 07:05:46

linux RedHat7LNMP构架搭建论坛三之源码安装PHP和Discuz论坛的相关文章

linux RedHat7LNMP构架搭建论坛之源码安装Nginx(1)

首先挂载镜像配置yum源 在使用源码安装服务之前,首先要让主机具备源码安装的编译程序源码的环境.#yum install -y apr autoconf automake bison bzip2 bzip2 compat cpp curl curl-devel fontconfig fontconfig-devel freetype freetype freetype-devel gcc gcc-c++ gd gettext gettext-devel glibc kernel kernel-h

搭建LNAMP环境(三)- 源码安装Apache2.4

上一篇:搭建LNAMP环境(二)- 源码安装Nginx1.10 1.yum安装编译apache需要的包(如果已经安装,可跳过此步骤) yum -y install pcre pcre-devel zlib zlib-devel openssl openssl-devel 2.创建apache用户组和用户 groupadd apache useradd -r -g apache -s /sbin/nologin -M apache 3.下载apache源码包及依赖包apr和apr-util,将它们

linux下yum程序包管理及源码安装

1.yum仓库中的repodata目录中元数据文件: primary.xml.gz:代表所有RPM包的列表和依赖关系以及每个RPM安装生成的文件列表: filelists.xml.gz:代表当前仓库中所有RPM包的所有文件列表: other.xml.gz:代表额外信息,RPM包的修改日志: repomd.xml记录的是上面三个文件的时间戳和校验和: comps*.xml: RPM包分组信息 2.yum定义repo文件 [Repo_ID] name=Description baseurl= ftp

linux RedHat7LNMP构架搭建论坛之源码安装Nginx(2)

一.提供Perl语言兼容的正则表达式库的软件包pcre,Nginx服务程序用于实现伪静态功能的依赖包进入目录解压文件#cd /usr/local/src#tar xzvf pcre-8.35.tar.gz #cd pcre-8.35用了--prefix参数,那么此时服务程序就会被安装到那个目录,(一般会被默认安装到/usr/local/bin目录中) #./configure --prefix=/usr/local/pcre译生成出真正可供用户安装服务程序的二进制可执行文件了) #make #m

Linux+Apache2.4+PHP5.6+MySQL5.6源码安装步骤

一.安装Apache 若要安装apache服务器软件,需要安装以下几个依赖软件 apr-1.4.6.tar.gz 下载地址:http://apr.apache.org/ apr-util-1.4.1.tar.gz 下载地址:http://apr.apache.org/ pcre-8.20.tar.gz 下载地址:http://www.pcre.org/ httpd-2.4.10.tar.gz 下载地址:http://httpd.apache.org/download.cgi 将以上软件都下载到自

Linux下MySQL、Apache、PHP源码安装全程实录(CentOS 6.4)

本文记录了我自己配置LAMP的全过程,借此记录一下,同时希望能够帮助一下需要帮助的LINUX新人,跟我一起学习,一起进步. MySQL安装全过程 源码包来自:http://distfiles.macports.org/mysql5/ $cd ~/Download $wget http://distfiles.macports.org/mysql5/mysql-5.1.60.tar.gz $chmod +x mysql-5.1.60.tar.gz $tar zxvf mysql-5.1.60.ta

LNMP架构 源码安装nginx+mysql+php+memcache+论坛

一.LNMP架构 LNMP代表的就是:Linux系统下Nginx+MySQL+PHP这种网站服务器架构. Linux是一类Unix计算机操作系统的统称,是目前最流行的免费操作系统.代表版本有:debian.centos.ubuntu.fedora.gentoo等. Nginx是一个高性能的HTTP和反向代理服务器,也是一个IMAP/POP3/SMTP代理服务器. Mysql是一个小型关系型数据库管理系统. PHP是一种在服务器端执行的嵌入HTML文档的脚本语言. 这四种软件均为免费开源软件,组合

搭建LNAMP环境(四)- 源码安装PHP7

上一篇:搭建LNAMP环境(三)- 源码安装Apache2.4 一.安装PHP7 1.yum安装编译php需要的包 yum -y install libxml2 libxml2-devel curl-devel libpng-devel freetype-devel libmcrypt-devel libjpeg-devel 2.创建php用户组和用户 groupadd php useradd -r -g php -s /sbin/nologin -M php 3.下载php源码包,将源码包放到

搭建LNAMP环境(二)- 源码安装Nginx1.10

上一篇:搭建LNAMP环境(一)- 源码安装MySQL5.6 1.yum安装编译nginx需要的包 yum -y install pcre pcre-devel zlib zlib-devel openssl openssl-devel 软件包说明:zlib: 为nginx提供gzip模块,需要zlib库支持pcre: 为支持地址重写rewrite功能openssl:为nginx提供ssl功能 2.创建nginx用户组和用户 groupadd nginx useradd -r -g nginx