Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Server \ Under CentOS yum install Nginx smooth switch mounted to Tengine     - Linux smart small switch rfkill (Linux)

- Linux operating system security can not be ignored (Linux)

- How Glances monitoring system on Ubuntu (Linux)

- Linux System Getting Started Learning: On Linux how to convert text files to PDF (Linux)

- CentOS 6.5 Telnet SecureCRT use management tools (Linux)

- awk variables (Linux)

- Ubuntu 12.04 LTS installation configuration JDK1.6.0_45 (Linux)

- Java semaphores (Programming)

- About the replication of JavaScript (Programming)

- Oracle Listener can not start (TNS-12555, TNS-12560, TNS-00525) (Database)

- Build your own Python coding environment (Linux)

- Oracle data row split multiple lines (Database)

- CentOS use wget (Linux)

- On the design of Oracle database backup (Database)

- CentOS7 boot systemd introduction and use of management (Linux)

- Ceph single / multi-node installation summary Powered by CentOS 6.x (Server)

- Android Application Development: an argument between Activity (Programming)

- learning Linux ls command examples (Linux)

- Linux system performance and usage activity monitoring tools -Sysstat (Linux)

- Paint with Vim (Linux)

 
         
  Under CentOS yum install Nginx smooth switch mounted to Tengine
     
  Add Date : 2018-11-21      
         
         
         
  We are here to open a cloud vps, and now has been installed Nginx, now we want to switch to a smooth installation Tengine at CentOS.

Download Tengine, unpack into the folder:

wget http://tengine.taobao.org/download/tengine-2.1.0.tar.gz

tar xvfz tengine-2.1.0.tar.gz

cd tengine-2.1.0

Look at the current version of nginx:

nginx -V

Results are as follows:

nginx version: nginx / 1.6.2
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-4) (GCC)
TLS SNI support enabled
configure arguments: -prefix = / etc / nginx -sbin-path = / usr / sbin / nginx -conf-path = / etc / nginx / nginx.conf -error-log-path = / var / log / nginx / error. log -http-log-path = / var / log / nginx / access.log -pid-path = / var / run / nginx.pid -lock-path = / var / run / nginx.lock -http-client-body -temp-path = / var / cache / nginx / client_temp -http-proxy-temp-path = / var / cache / nginx / proxy_temp -http-fastcgi-temp-path = / var / cache / nginx / fastcgi_temp -http- uwsgi-temp-path = / var / cache / nginx / uwsgi_temp -http-scgi-temp-path = / var / cache / nginx / scgi_temp -user = nginx -group = nginx -with-http_ssl_module -with-http_realip_module -with- http_addition_module -with-http_sub_module -with-http_dav_module -with-http_flv_module -with-http_mp4_module -with-http_gunzip_module -with-http_gzip_static_module -with-http_random_index_module -with-http_secure_link_module -with-http_stub_status_module -with-http_auth_request_module -with-mail -with-mail_ssl_module - with-file-aio -with-ipv6 -with-http_spdy_module -with-cc-opt = '- O2 -g -pipe -Wp, -D_FORTIFY_SOURCE = 2 -fexceptions -fstack-protector -param = ssp-buffer-size = 4 -m32 -march = i386 -mtune = generic -fasynchronous-unwind-tables'


Then we copy it to compile the following parameters configure arguments: the beginning until the end.

Start compiling Tengine, run the code:

./configure --prefix = / etc / nginx --sbin-path = / usr / sbin / nginx --conf-path = / etc / nginx / nginx.conf --error-log-path = / var / log / nginx / error.log --http-log-path = / var / log / nginx / access.log --pid-path = / var / run / nginx.pid --lock-path = / var / run / nginx. lock --http-client-body-temp-path = / var / cache / nginx / client_temp --http-proxy-temp-path = / var / cache / nginx / proxy_temp --http-fastcgi-temp-path = / var / cache / nginx / fastcgi_temp --http-uwsgi-temp-path = / var / cache / nginx / uwsgi_temp --http-scgi-temp-path = / var / cache / nginx / scgi_temp --user = nginx - group = nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module - with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-http_spdy_module --with-cc -opt = '- O2 -g -pipe -Wp, -D_FORTIFY_SOURCE = 2 -fexceptions -fstack-protector --param = ssp-buffer-size = 4 -m32 -march = i386 -mtune = generic -fasynchronous-unwind-tables '



./configure: error: C compiler cc is not found



Primarily our system there is no C language, now make up the gcc compiler environment:

yum install gcc

Re-run the compiler command is still being given:

./configure: error: the HTTP rewrite module requires the PCRE library.
You can either disable the module by using -without-http_rewrite_module
option, or install the PCRE library into the system, or build the PCRE library
statically from the source with nginx by using -with-pcre = option.

Missing pcre, install pcre:

yum install pcre-devel

Compile again, missing openssl:

./configure: error: SSL modules require the OpenSSL library.
You can either do not enable the modules, or install the OpenSSL library
into the system, or build the OpenSSL library statically from the source
with nginx by using -with-openssl = option.

 

Install openssl:

yum -y install openssl openssl-devel
Successfully compiled again to return:

Configuration summary
+ Using system PCRE library
+ Using system OpenSSL library
+ Md5: using OpenSSL library
+ Sha1: using OpenSSL library
+ Using system zlib library
+ Jemalloc library is disabled

nginx path prefix: "/ etc / nginx"
nginx binary file: "/ usr / sbin / nginx"
nginx configuration prefix: "/ etc / nginx"
nginx configuration file: "/etc/nginx/nginx.conf"
nginx pid file: "/var/run/nginx.pid"
nginx error log file: "/var/log/nginx/error.log"
nginx http access log file: "/var/log/nginx/access.log"
nginx http client request body temporary files: "/ var / cache / nginx / client_temp"
nginx dso module path: "/ etc / nginx / modules /"
nginx http proxy temporary files: "/ var / cache / nginx / proxy_temp"
nginx http fastcgi temporary files: "/ var / cache / nginx / fastcgi_temp"
nginx http uwsgi temporary files: "/ var / cache / nginx / uwsgi_temp"
nginx http scgi temporary files: "/ var / cache / nginx / scgi_temp"

MAKE, command line, make a direct hit on the line

make



make
//success



nginx stops running:

/etc/init.d/nginx stop

Migration file:

Copy objs directory nginx files to / usr / sbin / nginx directory, remember to backup before overwriting the original file:

cp / usr / sbin / nginx /usr/sbin/nginx.bak
cp objs / nginx / usr / sbin /

Test nginx:

 nginx -t

the configuration file /etc/nginx/nginx.conf syntax is ok
configuration file /etc/nginx/nginx.conf test is successful

Start nginx services:

service nginx start

Starting nginx: [OK]

Tengine test was successful:

Here we enter a nonexistent page to see being given to know

tengine successful installation

Tegine is compatible nginx configuration files, so we originally configured things no longer bother to modify it.
     
         
         
         
  More:      
 
- How to protect your eyes automatically adjust the screen brightness on Linux (Linux)
- CentOS yum install LAMP (Server)
- Java data structures - order linear form of table ArrayList (Programming)
- MySQL rollback insert statement causes ibd file grows double (Database)
- How to build Memcached Docker container (Server)
- Linux system security knowledge (Linux)
- To install and configure the Jetty server and JDK under Ubuntu 14.04.2 (Server)
- Ten to improve the efficiency of the Linux bash tricks (Linux)
- Linux Tutorial: Open multiple tabs in the GNOME terminal in Ubuntu 15.04 (Linux)
- Echo Command Examples (Linux)
- W and uptime command (Linux)
- Netcat Example (Linux)
- Preview function to confirm the stop resource Oracle 12c new feature crsctl (Database)
- Linux system find command Detailed (Linux)
- Use libcurl library download url image (Programming)
- Linux based exercises, interview questions (Linux)
- Using Java arrays implement sequential stack (Programming)
- Android Studio simple setup (Linux)
- Python object-oriented programming (Programming)
- PSUADE installation under Linux (Linux)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.