Shell> tar zxvf bison-3.0.tar.gz
Shell> cd bison-3.0
Shell> ./configure �Cprefix=/usr/local/bison
Shell> make
Shell> make install
Shell> tar zxvf cmake-2.8.10.2.tar.gz
Shell> cd cmake-2.8.10.2
Shell> ./configure �Cprefix=/usr/local/cmake
Shell> make
Shell> make install
修改环境变量
Shell> echo “export PATH=$PATH:/usr/local/bison/bin:/usr/local/cmake/bin” >> /etc/profile
Shell> source /etc/profile
Shell> groupadd mysql
Shell> useradd �CG mysql mysql
Shell> tar zxvf mysql-5.5.37.tar.gz
Shell> cd mysql-5.5.37
Shell> cmake �CDCMAKE_INSTALL_PREFIX=/usr/local/mysql �CDDEFAULT_CHARSET=utf8
Shell> make
Shell> make install
Shell> cd /usr/local/mysql
Shell> cp support-files/my-medium.cnf ./my.cnf
修改环境变量
Shell> echo “export PATH=$PATH:/usr/local/mysql/bin” >> /etc/profile
Shell> source /etc/profile
Mysql的初始配置及启动
Shell> chown �CR mysql:mysql /usr/local/mysql
Shell> /usr/local/mysql/scripts/mysql_install_db �Cbasedir=/usr/local/mysql �Cuser=mysql
Shell> mysqld_safe &
Shell> mysqladmin �Cu root password ‘root’
Shell> groupadd nginx
Shell> useradd nginx
Shell> tar zxvf ngnix-1.7.0
Shell> cd ngnix-1.7.0
Shell> ./configure �Cprefix=/usr/local/nginx
Shell> make
Shell> make install
Shell> chown �CR nginx:nginx /usr/local/nginx
修改环境变量
Shell> echo “export PATH=$PATH:/usr/local/nginx/sbin”
Shell> source /etc/profile
启动nginx
Shell>nginx
测试nginx
http://localhost
Shell> tar zxvf libiconv-1.14.tar.gz
Shell> cd libiconv-1.14
Shell> ./configure �Cprefix=/usr/local/libiconv
Shell> vi srclib/stdio.h
Shell> make
Shell> make install
Shell> tar zxvf php-5.5.12.tar.gz
Shell> cd php-5.5.12
Shell> ./configure �Cprefix=/usr/local/php �Cwith-iconv-dir=/usr/local/libiconv �Cenable-fpm �Cwith-mysql=/usr/localmysql
Shell> make
Shell> make test
Shell> make install
Shell> echo “export PATH=$PATH:/usr/local/php/bin:/usr/local/php/sbin” >>/etc/profile
Shell> source /etc/profile
php配置
Shell> cp php.ini-development /usr/local/php/php.ini
Shell> cd /usr/local/php
Shell> cp etc/php-fpm.conf.default etc/php-fpm.conf
Shell> vi /usr/local/php/php.ini
Shell> /usr/local/php/etc/php-fpm.conf
启动php-fpm
Shell> /usr/local/php/sbin/php-fpm
查看运行端口状况
Shell> netstat �Cnlupt
添加nginx对php-fpm支持
… …
php测试
Shell> cd /usr/local/nginx/html
Shell> mv index.html index.html.bak
Shell> echo “<?php phpinfo(); ?>” > index.php
http://localhost
Shell> unzip �Cx Discuz_X3.1_SC_UTF-8.zip
Shell> mv Discuz_X3.1_SC_UTF-8 discuz
Shell> mv discuz/* /usr/local/nginx/html/.
Shell> cd /usr/local/nginx/html
Shell> cp �CR upload.* ./.
Shell> chown �CR nginx:nginx /usr/local/nginx/html/*
Shell> http://localhost
如下图:
1 à
2 à如果出现红“x”,检查discuz文件夹权限
3à
4 à
5 à新应用需要zlib文件库支持