Centos6.8 64 位 Discuz 运行环境


Linux CentOS编译安装LNMP环境 +discuz + phpmyadmin

产品组成

Discuz-3.3 UTF8 完整版

Nginx-1.6.3

Php-5.5.38

Mysql-5.5.20

Phpmyadmin-4.6.6

Openssl-1.0.0d

Vsftpd

产品特点

1、基于阿里云纯净镜像方便、安全、快捷、稳定

2、所有软件采用编译安装最小消耗系统资源

3Discuz是一套通用的社区论坛软件系统用户可以在不需要任何编程的基础上通过简单的设置和安装在互联网上搭建起具备完善功能、很强负载能力和可高度定制的论坛服务。

4、使用nginx+php-fpm对高并发处理能力更好告别因为配置导致的502 报错

5nginx 开启https 模块支持优化配置nginx提搞nginx 数据处理能力运行更加稳定快速。

6、支持pathinfo开启pdo_mysql 以及所有适合Discuz 运行的常见组件7openssl 使用1.0.0d

使用说明

网站存放目录/data/www

Discuz 框架程序目录/data/www

Phpmyadmin 路径/data/www/phpmyadmin

FTP 存放路径/data/ftp

默认数据库数据存放路径/data/mysql

Php 存放路径/usr/local/php5

Nginx 存放路径/usr/local/nginx

Mysql 存放路径/usr/local/mysql

编译包存放路径/usr/local/src

Discuz 框架程序访问地址 http://IP/

Mysql 账户root 密码10idccom

Phpmyadmin 管理地址 http://IP:81

FTP 账号admins 密码10idccom

使用教程

/etc/init.d/nginx start|stop|restart [启动|停止|重启]

/etc/init.d/php-fpm start|stop|restart [启动|停止|重启]

/etc/init.d/mysql start|stop|restart [启动|停止|重启]


安装编译工具及库文件使用CentOS yum命令安装

yuminstall-ymakeapr*autoconfautomakecurl-develgccgcc-c++zlib-developensslopenssl-develpcre-develkernelkeyutilsperlkernel-headerscompat*mpfrcppglibclibgomplibstdc++-develpplcloog-pplkeyutils-libs-devellibcom_err-devellibsepol-devellibselinux-develkrb5-devellibjpeg-devellibpng-develzlib-devellibXpm*freetypephp-commonncurses*libtool*libxml2libxml2-develpatchfreetype-devel

开始安装

安装cmake

cd/usr/local/src#进入软件目录
tarzxfcmake-2.8.6.tar.gz#解压安装包
cdcmake-2.8.6#进入解压目录
./configure#安装包配置
make#编译
makeinstall#安装

安装MySQL

groupaddmysql#添加mysql组
useradd-gmysqlmysql-s/sbin/nologin#创建用户mysql并加入到mysql组不允许mysql用户直接登录系统
mkdir-p/data/mysql#创建MySQL数据库存放目录
chown-Rmysql:mysql/data/mysql#设置MySQL数据库目录权限
mkdir-p/usr/local/mysql#创建MySQL安装目录
cd/usr/local/src
tarzxfmysql-5.5.20.tar.gz#解压
cdmysql-5.5.20
cmake.-DCMAKE_INSTALL_PREFIX=/usr/local/mysql-DMYSQL_DATADIR=/data/mysql-DSYSCONFDIR=/etc#配置
make#编译
makeinstall#安装

cd/usr/local/mysql
cp./support-files/my-huge.cnf/etc/my.cnf#拷贝配置文件注意如果/etc目录下面默认有一个my.cnf直接覆盖即可
vi/etc/my.cnf#编辑配置文件,在[mysqld]部分增加下面一行
datadir=/data/mysql#添加MySQL数据库路径
:wq!#保存退出

./scripts/mysql_install_db--user=mysql#生成mysql系统数据库
cp./support-files/mysql.server/etc/rc.d/init.d/mysqld#把Mysql加入系统启动
chmod755/etc/rc.d/init.d/mysqld#增加执行权限
chkconfigmysqldon#设置开机启动
vi/etc/rc.d/init.d/mysqld#编辑
basedir=/usr/local/mysql#MySQL程序安装路径
datadir=/data/mysql#MySQl数据库存放目录
/etc/init.d/mysqldstart#启动
vi/etc/profile#把mysql服务加入系统环境变量在最后添加下面这一行
exportPATH=$PATH:/usr/local/mysql/bin
:wq!#保存退出

下面这两行把mysql的库文件链接到系统默认的位置在编译类似PHP等软件时可以不用指定mysql的库文件地址。

ln-s/usr/local/mysql/lib/mysql/usr/lib/mysql
ln-s/usr/local/mysql/include/mysql/usr/include/mysql
登录mysql修改root密码(如果登录不上或者显示找不到mysql命令,就断开远程连接,重新连接)
mysql-uroot
mysql>SETPASSWORDFOR'root'@'localhost'=PASSWORD('10idccom');
/etc/init.d/mysqldrestart#重启

到此mysql安装完成

安装pcre

cd/usr/local/src
mkdir/usr/local/pcre#创建安装目录
tarzxfpcre-8.36.tar.gz
cdpcre-8.36
./configure--prefix=/usr/local/pcre#配置
make
makeinstall

安装 nginx

cd/usr/local/src
groupaddwww#添加www组
useradd-gwwwwww-s/sbin/nologin#创建nginx运行账户www并加入到www组不允许www用户直接登录系统
tarzxfnginx-1.6.3.tar.gz
tarzxfopenssl-1.0.0d.tar.gz
cdnginx-1.6.3
./configure--prefix=/usr/local/nginx--without-http_memcached_module--user=www--group=www--with-http_stub_status_module--with-pcre=/usr/local/src/pcre-8.36--with-openssl=/usr/local/src/openssl-1.0.0d--with-http_ssl_module

注意:�Cwith-pcre=/usr/local/src/pcre-8.30指向的是源码包解压的路径而不是安装的路径否则会报错

最后两个是开启ssl,如不开启可以不添加


make
makeinstall
/usr/local/nginx/sbin/nginx#启动nginx
vi/etc/rc.d/init.d/nginx#设置nginx开机启动

编辑启动文件添加下面内容

#########################################################################
#!/bin/bash
#nginxStartupscriptfortheNginxHTTPServer
#itisv.0.0.2version.
#chkconfig:-8515
#description:Nginxisahigh-performancewebandproxyserver.
#Ithasalotoffeatures,butit'snotforeveryone.
#processname:nginx
#pidfile:/var/run/nginx.pid
#config:/usr/local/nginx/conf/nginx.conf
nginxd=/usr/local/nginx/sbin/nginx
nginx_config=/usr/local/nginx/conf/nginx.conf
nginx_pid=/usr/local/nginx/logs/nginx.pid
RETVAL=0
prog="nginx"
#Sourcefunctionlibrary.
./etc/rc.d/init.d/functions
#Sourcenetworkingconfiguration.
./etc/sysconfig/network
#Checkthatnetworkingisup.
[${NETWORKING}="no"]&&exit0
[-x$nginxd]||exit0

#Startnginxdaemonsfunctions.
start(){
if[-e$nginx_pid];then
echo"nginxalreadyrunning...."
exit1
fi
echo-n$"Starting$prog:"
daemon$nginxd-c${nginx_config}
RETVAL=$?
echo
[$RETVAL=0]&&touch/var/lock/subsys/nginx
return$RETVAL
}
#Stopnginxdaemonsfunctions.
stop(){
echo-n$"Stopping$prog:"
killproc$nginxd
RETVAL=$?
echo
[$RETVAL=0]&&rm-f/var/lock/subsys/nginx/usr/local/nginx/logs/nginx.pid
}
reload(){
echo-n$"Reloading$prog:"
#kill-HUP`cat${nginx_pid}`
killproc$nginxd-HUP
RETVAL=$?
echo
}
#Seehowwewerecalled.
case"$1"in
start)
start
;;
stop)
stop
;;
reload)
reload
;;
restart)
stop
start
;;
status)
status$prog
RETVAL=$?
;;
*)
echo$"Usage:$prog{start|stop|restart|reload|status|help}"
exit1
esac
exit$RETVAL

##################################################################################
:wq!#保存退出

返回命令行操作

chmod775/etc/rc.d/init.d/nginx#赋予文件执行权限
chkconfignginxon#设置开机启动
/etc/rc.d/init.d/nginxrestart#重启

安装libmcrypt

cd/usr/local/src
tarzxflibmcrypt-2.5.7.tar.gz#解压
cdlibmcrypt-2.5.7
./configure#配置
make#编译
makeinstall#安装

安装php

cd/usr/local/src
tarzxfphp-5.5.38.tar.gz
cdphp-5.5.38
mkdir-p/usr/local/php5#建立php安装目录
./configure--prefix=/usr/local/php5--with-config-file-path=/usr/local/php5/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-iconv--with-zlib--enable-xml--enable-magic-quotes--enable-safe-mode--enable-bcmath--enable-shmop--enable-sysvsem--enable-inline-optimization--with-curlwrappers--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--with-jpeg-dir--with-freetype-dir
make#编译
makeinstall#安装

如果内存小于1G会报错make: * [ext/fileinfo/libmagic/apprentice.lo] Error 1
在./configure添加�Cdisable-fileinfo 即可

cpphp.ini-production/usr/local/php5/etc/php.ini#复制php配置文件到安装目录
rm-rf/etc/php.ini#删除系统自带配置文件
ln-s/usr/local/php5/etc/php.ini/etc/php.ini#添加软链接
cp/usr/local/php5/etc/php-fpm.conf.default/usr/local/php5/etc/php-fpm.conf#拷贝模板文件为php-fpm配置文件
vi/usr/local/php5/etc/php-fpm.conf#编辑
pid=run/php-fpm.pid#取消前面的分号
user=www#设置php-fpm运行账号为www
group=www#设置php-fpm运行组为www

cp/usr/local/src/php-5.5.38/sapi/fpm/init.d.php-fpm/etc/rc.d/init.d/php-fpm#设置php-fpm开机启动拷贝php-fpm到启动目录
chmod+x/etc/rc.d/init.d/php-fpm#添加执行权限
chkconfigphp-fpmon#设置开机启动
/etc/init.d/php-fpmstart
vi/usr/local/php5/etc/php.ini#编辑配置文件

找到

disable_functions=

修改为

disable_functions=passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname

列出PHP可以禁用的函数如果某些程序需要用到这个函数可以删除取消禁用。

找到

;date.timezone=

修改为

date.timezone=PRC#设置时区

找到

expose_php=On

修改为

expose_php=OFF#禁止显示php版本的信息

PS在编译PHP的过程中可能会报UNDEFINED REFERENCE TO `LIBICONV_OPEN 无法编译PHP LIBICONV错误.

配置nginx支持php

mkdir/data/www
vi/usr/local/nginx/conf/nginx.conf#编辑配置文件
userwwwwww;#首行user去掉注释,修改Nginx运行组为wwwwww必须与/usr/local/php5/etc/php-fpm.conf中的user,group配置相同否则php运行出错index

server{
listen80;
server_namelocalhost;
location/{
root/data/www/;
indexindex.phpindex.htmlindex.htm;
}
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
location~\.php${
root/data/www/;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
fastcgi_paramSCRIPT_FILENAME/data/www/$fastcgi_script_name;
includefastcgi_params;
}
}


注意取消FastCGI server部分location的注释,并要注意fastcgi_param行的参数,改为/data/webroot/(此为网站根目录绝对路径)$fastcgi_script_name

/etc/init.d/nginxrestart#重启nginx

测试

vim /data/www/index.php
<?php
phpinfo();
?>


http://ip/index.php

==========================================================================================

rm -rf /data/www/index.php


测试步骤可省略。测试好了之后装论坛和phpmyadmin


unzipDiscuz_X3.3_SC_UTF8
mvupload/data/wwwupload是Discuz_X3.3_SC_UTF8解压出来的
cd/data/www/
chown-Rwww:wwwupload/*
cd/usr/local/src
tarzxfphpMyAdmin-4.6.6-all-languages.tar.gz-C/data/www/
cd/data/www
mvphpMyAdmin-4.6.6-all-languagesphpmyadmin

vi/usr/local/nginx/conf/nginx.conf
server{
listen80;
server_namelocalhost;
location/{
root/data/www/upload;
indexindex.phpindex.htmlindex.htm;
}
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
location~\.php${
root/data/www/upload;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
fastcgi_paramSCRIPT_FILENAME/data/www/upload/$fastcgi_script_name;
includefastcgi_params;
}
}
	server{
listen81;
server_namelocalhost;
location/{
root/data/www/phpmyadmin;
indexindex.phpindex.htmlindex.htm;
}
error_page500502503504/50x.html;
location=/50x.html{
roothtml;
}
location~\.php${
root/data/www/phpmyadmin;
fastcgi_pass127.0.0.1:9000;
fastcgi_indexindex.php;
fastcgi_paramSCRIPT_FILENAME/data/www/phpmyadmin/$fastcgi_script_name;
includefastcgi_params;
}
}

/etc/init.d/nginxrestart

安装论坛http://ip

登录phpmyadminhttp://ip:81

mysql账号:root密码10idccom


==========================================================================================

yum install -y vsftpd

mkdir -p /data/ftp

chmod -R 755 /data/ftp

useradd -s /sbin/nologin admins

passwd admins

vi /etc/vsftpd/vsftpd.conf

anonymous_enable=no

在最后一行添加

local_root=/data/ftp

/etc/init.d/vsftpd start

~~~~~~~~~~~或者~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

#yuminstall-yvsftpd
#useradd-d/data/ftp-s/sbin/nologin-Madmins-gftp
#passwdadmins
#mkdir-p/data/ftp
#chmod-R755/data/ftp

#vi/etc/vsftpd/vsftpd.conf
anonymous_enable=no

ascii_upload_enable=YES
ascii_download_enable=YES

chroot_list_enable=YES
chroot_list_file=/etc/vsftpd/chroot_list


use_localtime=YES添加

#vi/etc/vsftpd/chroot_list
admins

#/etc/init.d/vsftpdrestart

ftp访问地址ftp://ip账号:admins密码:10idccom

不建议在网页上测试,建议直接使用ftp客户端工具测试

相关文章

Centos下搭建性能监控Spotlight
CentOS 6.3下Strongswan搭建IPSec VPN
在CentOS6.5上安装Skype与QQ
阿里云基于centos6.5主机VPN配置
CentOS 6.3下配置multipah
CentOS安装、配置APR和tomcat-native