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 Nginx the server and configure the startup script

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article mainly explains "how to configure Nginx server and startup script". The explanation content in this article is simple and clear, easy to learn and understand. Please follow the idea of Xiaobian slowly and deeply to study and learn "how to configure Nginx server and startup script" together!

Experimental environment: RHEL7.2 x64-176, IP address: 192.168.1.176

Experimental tools:

Experimental procedure:

1, Install nginx server

2. Configure nginx startup script

3. File setup and verification results

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

1, Install nginx server

[root@localhost~]# useradd nginx -s /sbin/nologin -M #Create nginx user

[root@localhost~]# id nginx #Verify

uid=1001(nginx)gid=1001(nginx) group =1001(nginx)

[root@localhost ~]# yum install pcre pcre-devel openssl openssl-devel -y #install dependency packages

[root@localhost ~]# tar xf nginx-1.9.14.tar.gz #extract nginx source package to current directory

[root@localhost ~]# cd nginx-1.9.14/ #Enter the decompressed nginx directory

[root@localhost nginx-1.9.14]# ./ configure --user=nginx --group=nginx #Configure nginx

[root@localhostnginx-1.9.14]#make && make install #compile install nginx

[root# /usr/local/nginx/sbin/nginx -t #Check syntax

[root@localhostnginx-1.9.14]# /usr/local/nginx/sbin/nginx

#Access virtual machine IP address test nignx success

2. Configure nginx startup script

[root@localhost~]# vim nginx

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

#! /bin/bash

# chkconfig:2345 99 20

#description:nginx-server

nginx=/usr/local/nginx/sbin/nginx

case $1 in

start)

netstat -anlpt | grep nginx

if [ $? -eq 0 ]

then

echo "nginx-server isalready running"

else

echo "nginx-server beginstart"

$nginx

fi

;;

stop)

$nginx -s stop

if [ $? -eq 0 ]

then

echo "nginx-server isstoped"

else

echo "nginx-server stopfail,try again"

fi

;;

status)

netstat -anlpt | grep nginx

if [ $? -eq 0 ]

then

echo "nginx-server isrunning"

else

echo "nginx-server isstoped"

fi

;;

restart)

$nginx -s reload &>/dev/null

if [ $? -eq 0 ]

then

echo "nginx-server isbegin restart"

else

echo "nginx-server restartfail"

fi

;;

*)

echo "please enter {startrestart status stop}"

;;

esac

exit 0

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

3. File setup and verification results

[root@localhost~]# cp nginx /etc/init.d/ #Copy boot files to/etc/init.d directory

[root# chmod +x /etc/init.d/nginx #Set executable permissions

[root@localhost ~]# chkconfig --add nginx #add nginx as a service for the system

[root@localhost ~]# chkconfig --list nginx #View nginx startup runlevel

Thank you for reading, the above is the content of "how to configure Nginx server and startup script", after learning this article, I believe everyone has a deeper understanding of how to configure Nginx server and startup script, and the specific use situation needs to be verified by practice. Here is, Xiaobian will push more articles related to knowledge points for everyone, welcome to pay attention!

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

Internet Technology

Wechat

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

12
Report