简单指南:在Linux上安装Nginx

安装必须依赖 yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-deve

安装必须依赖

yum -y install make zlib zlib-devel gcc-c++ libtool  openssl openssl-devel

PCRE安装

下载依赖文件

下载 PCRE 安装包,下载地址: http://downloads.sourceforge.net/project/pcre/pcre/8.45/pcre-8.45.tar.gz

解压文件

[root@ebs-135816 opt]# tar -zxvf pcre-8.45.tar.gz

编译

登录后复制 

[root@ebs-135816 pcre-8.45]# ./configure 
[root@ebs-135816 pcre-8.45]# make 
[root@ebs-135816 pcre-8.45]# sudo make install

查看版本

[root@ebs-135816 nginx-1.22.1]# pcre-config --version
8.45
[root@ebs-135816 nginx-1.22.1]#

Nginx安装

下载nginx http://nginx.org/download/nginx-1.6.2.tar.gz

解压

[root@ebs-135816 home]# tar -zxvf nginx-1.22.1.tar.gz

编译

[root@ebs-135816 home]# cd nginx-1.22.1/
[root@ebs-135816 nginx-1.22.1]# ls
auto  CHANGES  CHANGES.ru  conf  configure  contrib  html  LICENSE  man  README  src
[root@ebs-135816 nginx-1.22.1]# ./configure --prefix=/home/nginx-1.22.1 --with-http_stub_status_module --with-http_ssl_module --with-pcre=/opt/pcre-8.45
[root@ebs-135816 nginx-1.22.1]# make

验证配置

[root@ebs-135816 nginx-1.22.1]# mkdir logs
[root@ebs-135816 nginx-1.22.1]# ./sbin/nginx -t
nginx: the configuration file /home/nginx-1.22.1/conf/nginx.conf syntax is ok
nginx: configuration file /home/nginx-1.22.1/conf/nginx.conf test is successful
[root@ebs-135816 nginx-1.22.1]#

启动服务

[julong@localhost nginx]$ ./sbin/nginx 
在网页试着访问下http://192.168.1.222:9090/
./sbin/nginx -s reload            # 重新载入配置文件
./sbin/nginx -s reopen            # 重启 Nginx
./sbin/nginx -s stop              # 停止 Nginx

本文详细介绍了在Linux系统下安装Nginx的步骤。首先,我们通过包管理器安装Nginx,并启动Nginx服务。然后,我们介绍了如何进行基本的配置,包括修改默认网站目录、配置虚拟主机和HTTPS等。最后,我们还介绍了如何启用Nginx的gzip压缩和缓存功能,以提高网站的性能。通过本文的指导,读者可以轻松地在Linux系统上安装和配置Nginx,为自己的网站和应用程序提供高性能的服务。

到此这篇关于简单指南:在Linux上安装Nginx的文章就介绍到这了,更多相关linux下安装nginx内容请搜索好代码网以前的文章或继续浏览下面的相关文章希望大家以后多多支持好代码网!

您可能有感兴趣的文章
Linux系统解决You have new mail in /var/spool/mail/root提示

如何在红旗Linux系统redflag6.0上安装QQ

Linux怎么清屏? Fedora终端复位清屏的两种方法

Linux怎么设置中文语言? centos中文乱码的如何解决办法

红旗Linux高级服务器版4.1下载