Linux中在线安装nginx环境方法(Centos/Ubuntu/Debian)

首先创建个文件

vi /etc/yum.repos.d/nginx.repo

复制下面文本,保存并退出

[nginx]

name=nginx repo

baseurl=http://nginx.org/packages/centos/$releasever/$basearch/

gpgcheck=0

enabled=1

运行以下命令进行安装

#yum install pcre  安装依赖包

#yum install nginx

后面整理了一些如/Ubuntu/Debian系统的安装包了

Red Hat/CentOS packages

Official Red Hat/CentOS packages To add nginx yum repository, create a file named /etc/yum.repos.d/nginx.repo and paste one of the configurations below:

CentOS:

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0
enabled=1
RHEL:

[nginx]

name=nginx repo
baseurl=http://nginx.org/packages/rhel/$releasever/$basearch/
gpgcheck=0
enabled=1

Due to differences between how CentOS, RHEL, and Scientific Linux populate the $releasever variable, it is necessary to manually replace $releasever with either "5" (for 5.x) or "6" (for 6.x), depending upon your OS version.

Official Debian/Ubuntu packages Append the appropriate stanza to /etc/apt/sources.list. The Pgp page explains the signing of the nginx.org released packaging.

Ubuntu 10.04:

deb http://nginx.org/packages/ubuntu/ lucid nginx
deb-src http://nginx.org/packages/ubuntu/ lucid nginx
Debian 6:

deb http://nginx.org/packages/debian/ squeeze nginx
deb-src http://nginx.org/packages/debian/ squeeze nginx

Ubuntu PPA

This PPA is maintained by volunteers and is not distributed by nginx.org. It has some additional compiled-in modules and may be more fitting for your environment.

You can get the latest stable version of Nginx from the Nginx PPA on Launchpad: You will need to have root privileges to perform the following commands.

For Ubuntu 10.04 and newer:

sudo -s
nginx=stable # use nginx=development for latest development version
add-apt-repository ppa:nginx/$nginx
apt-get update
apt-get install nginxIf you get an error about add-apt-repository not existing, you will want to install python-software-properties. For other Debian/Ubuntu based distributions, you can try the lucid variant of the PPA which is the most likely to work on older package sets.

sudo -s
nginx=stable # use nginx=development for latest development version
echo "deb http://ppa.launchpad.net/nginx/$nginx/ubuntu lucid main" > /etc/apt/sources.list.d/nginx-$nginx-lucid.list
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C300EE8C
apt-get update
apt-get install nginx

官网参考http://wiki.nginx.org/Install

 

时间: 2024-11-10 07:51:19

Linux中在线安装nginx环境方法(Centos/Ubuntu/Debian)的相关文章

Ubuntu中编译安装python环境方法步骤

引言 默认情况下,ubuntu系统(16.04)已经安装了最基本的python组件,但功能并不完整,这篇文章介绍在ubuntu系统中如何完整的安装python环境,文章的后半段会介绍一款非常好用的python集成开发环境WingIDE. 文章目录 1)前往[ python官方网站 ]Downloads页面,下载最新python源码,目前(2016)python有两个主要版本,python2和python3,两个版本之间并不兼容,请根据自身需求选择不同版本,本文以python3举例. 2)进入下载

linux中Apache更Nginx环境配置教程

想把Apache2.2换Nginx已经有些日子,今天给动手了.找了个稳定版本:1.4.1  http://nginx.org/download/nginx-1.4.1.zip 配置很简单,就是nginx跟php-cgi的进程管理有点子麻烦. 但是,只要会点bat,也是很简单的事情.贴一下自己的两个管理nginx.php-cgi的bat文件. 1. start_nginx_php-cgi.bat    代码如下 复制代码     @echo off     echo Starting PHP Fa

LINUX中VPS安装eAccelerator加速器方法

一,在VPS上的安装和配置 以下操作在ssh中进行.先查看有没有安装make模块,大部分都安装了,没有的,先安装make模块:  代码如下 复制代码 yum install make 输入以下命令,逐行运行.下载 - 解压 - 切换目录 - 配置编译安装 - 切换到根目录 - 删除 - 创建缓存目录 - 修改缓存目录的权限.  代码如下 复制代码 wget http://www.hwzj.org/soft/Linux/eaccelerator-0.9.6.1.zip tar xjf eaccel

CentOS7中yum安装lamp环境方法图解

CentOS7出来了,第一时间安装体验了一把,感觉不错. 由于nginx还没有CentOS7的源,就安装了个lamp环境试试,过程非常简单: 1.yum安装lamp软件包 yum install httpd php php-gd php-mysql mysql-server 2.启动环境 systemctl start httpd.service systemctl start mysql.service 3.开机启动 systemctl enable httpd.service systemc

linux中supportconfig安装与使用方法

由于工作原因,平时需要suse的工程师做二线技术支持,除了经常会提交kdump分析的结果给suse 工程师定位根因.而在没有kdump生成时,经常会用的指令就是supportconfig收集系统信息.其收集内容基本涵盖了内核.模块.系统.服务等几乎所有我们能想到的信息,另外还会出一份简单的health check报告,其除了适用于suse企业版外,同样在opensuse上也可以使用.本篇就结合现网使用的场景对supportconfig命令做一个简单的概括. 一.supportconfig的安装

linux中samba安装与配置方法

一.安装及配置samba  代码如下 复制代码 yum –y install samba* –skip-broken vim /etc/samba/smb.conf [web] path=/usr/local/apache2/htdocs/ browseable=yes writable=yes 二.创建用户并且acl权限配置  代码如下 复制代码 1.useradd apache 2.setfacl -m u:apache:rwx -R /usr/local/apache2/htdocs 3.

在eclipse中在线安装TestNG插件后,没有testng选项,很多方法都试过了

问题描述 在eclipse中在线安装TestNG插件后,没有testng选项,很多方法都试过了 2C 在eclipse中在线安装TestNG插件后,没有testng选项,很多方法都试过了,求大神给解决啊方法,最好有详细过程,或者是安装过程中要注意什么,在线等,谢啦 解决方案 安装TestNG在eclipse中的插件安装TestNG在eclipse中的插件安装TestNG在eclipse中的插件

Linux有问必答:Linux 中如何安装 7zip

Linux有问必答:Linux 中如何安装 7zip 问题: 我需要要从 ISO 映像中获取某些文件,为此我想要使用 7zip 程序.那么我应该如何安装 7zip 软件呢,[在 Linux 发布版本上完全安装]? 7zip 是一款开源的归档应用程序,开始是为 Windows 系统而开发的.它能对多种格式的档案文件进行打包或解包处理,除了支持其原生的 7z 格式的文档外,还支持包括 XZ.GZIP.TAR.ZIP 和 BZIP2 等这些格式. 通常,7zip 也用来解压 RAR.DEB.RPM 和

linux中配置pptp服务器配置的方法_Linux

1.验证内核是否加载了MPPE模块: modprobe ppp-compress-18 && echo MPPE is ok 2.安装所需的软件包: yum -y install ppp wget ftp://rpmfind.net/linux/epel/7/x86_64/p/pptpd-1.4.0-2.el7.x86_64.rpm rpm -ivh pptpd-1.4.0-2.el7.x86_64.rpm 3.配置PPP和PPTP的配置文件: grep ^[^#] /etc/ppp/op