CentOS6.5编译安装Nginx1.70 +PHP5.59+MySQL5.6.16
下载软件工具包:
1、下载nginx
http://nginx.org/download/nginx-1.7.0.tar.gz
2、下载pcre (支持nginx伪静态)
http://jaist.dl.sourceforge.net/project/pcre/pcre/8.35/pcre-8.35.tar.gz
4、下载MySQL5.6.16
http://mirrors.sohu.com/mysql/MySQL-5.6/mysql-5.6.16.tar.gz
5、下载php-5.5.9
http://mirrors.sohu.com/php/php-5.5.9.tar.gz
6、下载cmake(MySQL编译工具)
http://www.cmake.org/files/v2.8/cmake-2.8.12.2.tar.gz
7、下载libmcrypt(PHPlibmcrypt模块)
http://nchc.dl.sourceforge.net/project/mcrypt/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz
约定:
把上述软件包全部上传到新建的/data/soft目录下
">"代表命令行提示符
安装编译工具及库文件:
>yum install make apr* autoconf automake bzip2 bzip2-devel curl curl-devel gcc gcc-c++ gcc-g77 e2fsprogs e2fsprogs-devel zlib* zlib-devel openssl openssl-devel pcre-devel gd gd-devel kernel keyutils patch perl kernel-headers compat* mpfr cpp glibc libgomp libstdc++-devel ppl cloog-ppl keyutils-libs-devel libcom_err-devel libsepol-devel libselinux-devel krb5-devel zlib-devel libXpm* freetype freetype-devel libpng* libpng10 libpng10-devel libpng-devel php-common php-gd ncurses* ncurses-devel libtool* libtool-libs libxml2-devel patch glibc glibc-devel glib2 glib2-devel krb5 krb5-devel libevent libevent-devel libidn libidn-devel nss_ldap openldap openldap-clients openldap-devel openldap-servers openssl openssl-devel pspell-devel net-snmp* net-snmp-devel -y
安装cmake
>cd /data/soft && tar zxvf cmake-2.8.12.2.tar.gz
>cd cmake-2.8.12.2
>./configure && make && make install
安装MySQL
>groupadd mysql #添加mysql组
>useradd -g mysql mysql -s /bin/false #创建用户mysql并加入到mysql组,不允许mysql用户直接登录系统
>mkdir -p /data/mysqldata #创建MySQL数据库存放目
>chown -R mysql:mysql /data/mysqldata #设置MySQL数据库目录权限
>mkdir -p /usr/local/mysql #创建MySQL安装目录
>cd /data/soft
>tar zxvf mysql-5.6.16.tar.gz
>cd mysql-5.6.16
>/usr/local/bin/cmake -DCMAKE_INSTALL_PREFIX=/usr/local/mysql \
-DMYSQL_UNIX_ADDR=/tmp/mysql.sock \
-DDEFAULT_CHARSET=utf8 \
-DDEFAULT_COLLATION=utf8_general_ci \
-DWITH_EXTRA_CHARSETS:STRING=utf8,gbk \
-DWITH_MYISAM_STORAGE_ENGINE=1 \
-DWITH_INNOBASE_STORAGE_ENGINE=1 \
-DWITH_MEMORY_STORAGE_ENGINE=1 \
-DWITH_READLINE=1 \
-DENABLED_LOCAL_INFILE=1 \
-DMYSQL_DATADIR=/data/mysqldata \
-DMYSQL_USER=mysql \
-DMYSQL_TCP_PORT=3306 \
-DSYSCONFDIR=/etc \
-DINSTALL_SHAREDIR=share
>make && make install
详细编译参数参考:http://dev.mysql.com/doc/refman/5.6/en/source-configuration-options.html
配置MySQL
>mkdir /tmp #用作缓存
>chown -R mysql:mysql /tmp/ #必须为目录授权,否则无法写入
>cp ./support-files/my-default.cnf /etc/my.cnf #拷贝配置文件(注意:如果/etc目录下面默认有一个my.cnf,直接覆盖即可)
>vi /etc/my.cnf #编辑配置文件,在 [mysqld] 部分增加下面一行
datadir = /data/mysqldata #添加MySQL数据库路径
:wq! #保存退出
>cd /usr/local/mysql
>./scripts/mysql_install_db --user=mysql --datadir=/data/mysqldata/ #生成mysql系统数据库
>cp ./support-files/mysql.server /etc/rc.d/init.d/mysql #把Mysql加入系统启动
>chmod 755 /etc/init.d/mysql #增加执行权限
>chkconfig mysql on #加入开机启动
>vi /etc/rc.d/init.d/mysql #编辑
basedir = /usr/local/mysql #MySQL程序安装路径
datadir = /data/mysqldata #MySQl数据库存放目录
:wq! #保存退出
>service mysql start #启动
>vi /etc/profile #把mysql服务加入系统环境变量:在最后添加下面这一行
export PATH=$PATH:/usr/local/mysql/bin
:wq! #保存退出
下面这行把myslq的库文件链接到系统默认的位置,这样你在编译类似PHP等软件时可以不用指定mysql的库文件地址。
>ln -s /usr/local/mysql/include/mysql /usr/include/mysql
>reboot #需要重启系统,等待系统重新启动之后继续在终端命令行下面操作
>mysql_secure_installation #设置Mysql密码
根据提示按Y 回车
然后输入2次密码
继续按Y 回车,直到设置完成
或者直接修改密码/usr/local/mysql/bin/mysqladmin -u root -p password "123456" #修改密码
>service mysql restart #重启
到此,mysql安装完成!
安装pcre
>cd /data/soft
>mkdir /usr/local/pcre #创建安装目录
>tar zxvf pcre-8.35.tar.gz
>cd pcre-8.35
>./configure --prefix=/usr/local/pcre #配置
>make && make install
安装nginx
>cd /data/soft
>groupadd webuser #添加webuser组
>useradd -g webuser webuser -s /bin/false #创建nginx运行账户webuser并加入到webuser组,不允许webuser用户直接登录系统
>tar zxvf nginx-1.7.0.tar.gz
>cd nginx-1.7.0
>./configure --prefix=/usr/local/nginx --without-http_memcached_module --user=webuser --group=webuser --with-http_stub_status_module --with-openssl=/usr/ --with-pcre=/data/soft/pcre-8.35
注意:--with-pcre=/data/pcre-8.35指向的是源码包解压的路径,而不是安装的路径,否则会报错
>make && make install
>/usr/local/nginx/sbin/nginx #启动nginx
设置nginx开启启动
>vi /etc/rc.d/init.d/nginx
#编辑启动文件添加下面内容
#!/bin/bash
#
# chkconfig: - 85 15
# description: Nginx is a World Wide Web server.
# processname: nginx
nginx=/usr/local/nginx/sbin/nginx
conf=/usr/local/nginx/conf/nginx.conf
case $1 in
start)
echo -n "Starting Nginx..."
$nginx -c $conf
echo " done"
;;
stop)
echo -n "Stopping Nginx..."
killall -9 nginx
echo " done"
;;
test)
$nginx -t -c $conf
;;
reload)
echo -n "Reloading Nginx..."
ps auxww | grep nginx | grep master | awk '{print $2}' | xargs kill -HUP
echo " done"
;;
restart)
$0 stop
$0 start
;;
show)
ps -aux|grep nginx
;;
*)
echo -n "Usage: $0 {start|restart|reload|stop|test|show}"
;;
esac
:wq! #保存退出
>chmod 775 /etc/rc.d/init.d/nginx #赋予文件执行权限
>chkconfig nginx on #设置开机启动
>/etc/rc.d/init.d/nginx restart #重启
>service nginx restart
安装libmcrypt
>cd /data/soft
>tar zxvf libmcrypt-2.5.8.tar.gz
>cd libmcrypt-2.5.8
>./configure && make && make install
安装PHP
>cd /data/soft
>tar zxvf php-5.5.9.tar.gz
>cd php-5.5.9
>mkdir -p /usr/local/php5
>./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-gd --with-iconv --with-zlib --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-inline-optimization --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
>make && make install
配置php
>cp php.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 #编辑
user = webuser#设置php-fpm运行账号为webuser
group = webuser#设置php-fpm运行组为webuser
pid = run/php-fpm.pid #取消前面的分号
设置 php-fpm开机启动
:wq! #保存退出
>cp /data/soft/php-5.5.9/sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm #拷贝php-fpm到启动目录
>chmod +x /etc/rc.d/init.d/php-fpm #添加执行权限
>chkconfig php-fpm on #设置开机启动
>vi /usr/local/php5/etc/php.ini #编辑配置文件
修改为:
disable_functions = passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshellcmd,dll,popen,disk_free_space,checkdnsrr,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版本的信息
找到:short_open_tag = Off
修改为:short_open_tag = ON #支持php短标签
:wq! #保存退出
配置nginx支持php
>vi /usr/local/nginx/conf/nginx.conf
#编辑配置文件,需做如下修改
user webuser webuser; #首行user去掉注释,修改Nginx运行组为webuser webuser;必须与/usr/local/php5/etc/php-fpm.conf中的user,group配置相同,否则php运行出错
index index.php index.html index.htm; #添加index.php
#取消FastCGI server部分location的注释,并要注意fastcgi_param行的参数,改为$document_root$fastcgi_script_name,或者使用绝对路径
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
root /data/wwwroot; #修改根目录到/data/wwwroot,默认是html
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#同时在下面增加以下部分支持图片和js/css缓存
location ~.*\.(jpg|jpeg|gif|css|png|ico|html)?$ {
root /data/wwwroot/;
expires 10d;
break;
}
location ~ .*\.(js|css)?${
root /data/wwwroot/;
expires 30d;
break;
}
:wq! #保存退出
>/etc/init.d/nginx restart #重启nginx
>chown webuser.webuser /data/wwwroot/ -R #设置默认网站根目录所有者,默认是/usr/local/nginx/html
>chmod 700 /usr/local/nginx/html/ -R #设置目录权限
>shutdown -r now #重启系统
修改防火墙允许访问80和3306端口
>iptables -I INPUT -p tcp --dport 80 -j ACCEPT
>iptables -I INPUT -p tcp --dport 3306 -j ACCEPT
>/etc/init.d/iptables save
至此配置完成,新建个index.php测试
>vi /data/wwwroot/index.php #在nginx网站根目录新建index.php
phpinfo();
?>
:wq! #保存退出
通过http://yourip/index.php访问到你的站点,如看到php信息说明运行正常
###########################################################################
服务器相关操作命令
service nginx restart #重启nginx
service mysql restart #重启mysql
/usr/local/php5/sbin/php-fpm #启动php-fpm
/etc/rc.d/init.d/php-fpm restart #重启php-fpm
/etc/rc.d/init.d/php-fpm stop #停止php-fpm
/etc/rc.d/init.d/php-fpm start #启动php-fpm
###########################################################################
软件安装目录说明
nginx:/usr/local/nginx
php:/usr/local/php5
mysql:/usr/local/mysql
mysql数据库存放路径:/data/mysqldata
网站存放路径:/data/wwwroot

Heiße KI -Werkzeuge

Undresser.AI Undress
KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover
Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool
Ausziehbilder kostenlos

Clothoff.io
KI-Kleiderentferner

AI Hentai Generator
Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

Heiße Werkzeuge

Notepad++7.3.1
Einfach zu bedienender und kostenloser Code-Editor

SublimeText3 chinesische Version
Chinesische Version, sehr einfach zu bedienen

Senden Sie Studio 13.0.1
Leistungsstarke integrierte PHP-Entwicklungsumgebung

Dreamweaver CS6
Visuelle Webentwicklungstools

SublimeText3 Mac-Version
Codebearbeitungssoftware auf Gottesniveau (SublimeText3)

Heiße Themen



Laravel vereinfacht die Behandlung von temporären Sitzungsdaten mithilfe seiner intuitiven Flash -Methoden. Dies ist perfekt zum Anzeigen von kurzen Nachrichten, Warnungen oder Benachrichtigungen in Ihrer Anwendung. Die Daten bestehen nur für die nachfolgende Anfrage standardmäßig: $ Anfrage-

Die PHP Client -URL -Erweiterung (CURL) ist ein leistungsstarkes Tool für Entwickler, das eine nahtlose Interaktion mit Remote -Servern und REST -APIs ermöglicht. Durch die Nutzung von Libcurl, einer angesehenen Bibliothek mit Multi-Protokoll-Dateien, erleichtert PHP Curl effiziente Execu

Laravel bietet eine kurze HTTP -Antwortsimulationssyntax und vereinfache HTTP -Interaktionstests. Dieser Ansatz reduziert die Code -Redundanz erheblich, während Ihre Testsimulation intuitiver wird. Die grundlegende Implementierung bietet eine Vielzahl von Verknüpfungen zum Antworttyp: Verwenden Sie Illuminate \ Support \ facades \ http; Http :: fake ([ 'Google.com' => 'Hallo Welt',, 'github.com' => ['foo' => 'bar'], 'Forge.laravel.com' =>

Möchten Sie den dringlichsten Problemen Ihrer Kunden in Echtzeit und Sofortlösungen anbieten? Mit Live-Chat können Sie Echtzeitgespräche mit Kunden führen und ihre Probleme sofort lösen. Sie ermöglichen es Ihnen, Ihrem Brauch einen schnelleren Service zu bieten

Der Service -Container und die Dienstleister von Laravel sind für seine Architektur von grundlegender Bedeutung. In diesem Artikel werden Servicecontainer untersucht, Details für die Erstellung, Registrierung, Registrierung und die praktische Nutzung mit Beispielen mit Beispielen untersucht. Wir beginnen mit einem Ove

Die PHP -Protokollierung ist für die Überwachung und Debugie von Webanwendungen von wesentlicher Bedeutung sowie für das Erfassen kritischer Ereignisse, Fehler und Laufzeitverhalten. Es bietet wertvolle Einblicke in die Systemleistung, hilft bei der Identifizierung von Problemen und unterstützt eine schnellere Fehlerbehebung

In Artikel wird die in PHP 5.3 eingeführte LSB -Bindung (LSB) erörtert, die die Laufzeitauflösung der statischen Methode ermöglicht, um eine flexiblere Vererbung zu erfordern. Die praktischen Anwendungen und potenziellen Perfo von LSB

In dem Artikel werden Frameworks hinzugefügt, das sich auf das Verständnis der Architektur, das Identifizieren von Erweiterungspunkten und Best Practices für die Integration und Debuggierung hinzufügen.
