Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to install nginx and php under centos

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to install nginx and php under centos". The content in the article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to install nginx and php under centos".

Sudo systemctl start php-fpmyum installs sudo yum-y install nginx to launch nginx, visit the nginx page in the local browser, and check whether the service has started successfully. Sudo systemctl start nginx visits url: http://ip:80 to install the shell script #! / bin/bash echo 'start install nginx...' Wget http://nginx.org/download/nginx-1.10.2.tar.gz tar-xvf nginx-1.10.2.tar.gz cd nginx-1.10.2 yum-y install gcc pcre-devel openssl-devel. / configure make make install echo 'install nginx successful.'fi installs php and php-fpmsudo yum-y install php php-fpm

Start the php-fpm service

Sudo systemctl start php-fpm

Here is the configuration file for nginx.conf

The core code is location.php.

# For more information on configuration, see:# * Official English Documentation: http://nginx.org/en/docs/# * Official Russian Documentation: http://nginx.org/ru/docs/user nginx;worker_processes auto;error_log / var/log/nginx/error.log;pid / run/nginx.pid;# Load dynamic modules. See / usr/share/doc/nginx/README.dynamic.include / usr/share/nginx/modules/*.conf;events {worker_connections 1024;} http {log_format main'$remote_addr-$remote_user [$time_local] "$request"'$status $body_bytes_sent "$http_referer"'"$http_user_agent"$http_x_forwarded_for"' Access_log / var/log/nginx/access.log main; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; include / etc/nginx/mime.types; default_type application/octet-stream; # Load modular configuration files from the / etc/nginx/conf.d directory. # See http://nginx.org/en/docs/ngx_core_module.html#include # for more information. Include / etc/nginx/conf.d/*.conf; server {listen 8008 default_server; # listen [:]: 80 default_server; server_name _; root / usr/share/nginx/html; # Load configuration files for the default server block. Include / etc/nginx/default.d/*.conf; location ~\ .php$ {fastcgi_pass 127.0.0.1 php$ 9000; # fastcgi service port to proxy http requests to this port fastcgi_index index.php; # fastcgi service default page fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name # set the requested script file path include fastcgi_params;} location / {} error_page 404 / 404.html; location = / 40x.html {} error_page 500502 503504 / 50x.html Location = / 50x.html {}} # Settings for a TLS enabled server.## server {# listen 443 ssl http2 default_server;# listen [:]: 443 ssl http2 default_server;# server_name _; # root / usr/share/nginx/html;## ssl_certificate "/ etc/pki/nginx/server.crt" # ssl_certificate_key "/ etc/pki/nginx/private/server.key"; # ssl_session_cache shared:SSL:1m;# ssl_session_timeout 10m ssl_prefer_server_ciphers on;## / etc/nginx/default.d/*.conf # ssl_prefer_server_ciphers on;## # Load configuration files for the default server block.# include / etc/nginx/default.d/*.conf # # location / {#} # error_page 404 / 404.html nginx # location = / 40x.html {#} # # error_page 500502 503504 / 50x.htmltransfer# location = / 50x.html {#}} nginx-tsudo systemctl reload nginx

There are several ways to restart nginx

Add the configuration before restarting

The command to determine whether the Nginx configuration is correct is as follows:

Nginx-t-c / etc/nginx/nginx.conf

Nginx-s reload

-

2 compile and install

Pre-installation preparation

Install some compilation tools, dependency packages, etc.

Sudo yum-y install gcc automake autoconf libtool make unzip gcc-c++ glibc gd-develsudo yum-y install libmcrypt-devel mhash-devel libxslt-devel\ libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel\ zlib zlib-devel glibc-devel glib2 glib2-devel bzip2 bzip2-devel\ ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel\ krb5 krb5-devel libidn libidn-devel openssl openssl-devel install nginx

Download the official software package

Wget http://nginx.org/download/nginx-1.4.2.tar.gz

Decompression

Tar-xvf nginx-1.4.2.tar.gz

Create an installation directory

Sudo mkdir / usr/local/nginx

Compilation and installation

Cd nginx-1.4.2./configure-prefix=/usr/local/nginx-sbin-path=/usr/local/nginx/sbin/nginx-conf-path=/usr/local/nginx/conf/nginx.conf-user=nginx-group=nginx sudo make & & sudo make install

Start service

Cd / usr/local/nginx/sbin/sudo. / nginx

Do not worry about the occurrence of make [1]: Leaving directory `/ home/xxx/nginx-1.4.2',.

Install php

Download the official software package

Wget http://cn2.php.net/distributions/php-5.6.39.tar.gz

Decompression

Tar-xvf php-5.6.39.tar.gz

Create an installation directory

Sudo mkdir / usr/local/php

Compilation and installation

. / configure-- prefix=/usr/local/php\-- with-config-file-path=/usr/local/php/etc\-- enable-fpm-- with-mcrypt\-- 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-dirsudo make all install

Make user settings for php-fpm

Sudo groupadd wwwsudo useradd www-g www-s / sbin/nologincd / usr/local/phpsudo cp etc/php-fpm.conf.default etc/php-fpm.confsudo vi etc/php-fpm.conf # modify the following two parameters user = wwwgroup = www

Start service

Sudo / usr/local/php/sbin/php-fpm is configured for php in nginx.conf

Add to server {} of http {}

Vim / usr/local/nginx/conf/nginx.conf index index.html index.htm index.php;location ~\ .php$ {fastcgi_pass 127.0.0.1 php$ 9000; # fastcgi service port to proxy http requests to this port fastcgi_index index.php; # fastcgi service default page fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name # set the requested script file path include fastcgi_params;} add php test page vim / usr/local/nginx/html/index.php restart nginx service cd / usr/local/nginx/sbin/sudo. / nginx test: visit the page http://ip:80/index.php on this machine

You may encounter the following problems

The error is:. / configure: error: the HTTP rewrite module requires the PCRE library.

Install pcre-devel to resolve the problem

Yum-y install pcre-devel

It is also possible that:

Error message:. / configure: error: the HTTP cache module requires md5 functions

From OpenSSL library. You can either disable the module by using

-- without-http-cache option, or install the OpenSSL library into the system

Or build the OpenSSL library statically from the source with nginx by using

-with-http_ssl_module-with-openssl= options.

Solution:

Yum-y install openssl openssl-devel

Thank you for your reading, the above is the content of "how to install nginx and php under centos". After the study of this article, I believe you have a deeper understanding of how to install nginx and php under centos. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report