Centos服务器搭建(5)——安装ngnix

首先已经安装完JDK

1.下载nginx-1.6.2.tar.gz

2.安装前确保已经安装了g++、gcc、openssl-devel、pcre-devel和zlib-devel软件

[[email protected] ~]# yum install gcc-c++ [[email protected] ~]# yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel

3.安装nginx

[[email protected] ~]# cp /root/nginx-1.6.2.tar.gz /opt/
[[email protected] ~]# tar -xzvf nginx-1.6.2.tar.gz
[[email protected] opt]# cd nginx-1.6.2
[[email protected] nginx-1.6.2]# ./configure --prefix=/usr/local/nginx  #安装到/usr/local/nginx 
[[email protected] nginx-1.6.2]# make && make install

[[email protected] sbin]# /usr/local/nginx/sbin/nginx #启动nginx

4.常用命令

[[email protected] sbin]# /usr/local/nginx/sbin/nginx -h
nginx version: nginx/1.6.2
Usage: nginx [-?hvVtq] [-s signal] [-c filename] [-p prefix] [-g directives]

Options:
  -?,-h         : this help
  -v            : show version and exit
  -V            : show version and configure options then exit
  -t            : test configuration and exit
  -q            : suppress non-error messages during configuration testing
  -s signal     : send signal to a master process: stop, quit, reopen, reload
  -p prefix     : set prefix path (default: /usr/local/nginx/)
  -c filename   : set configuration file (default: conf/nginx.conf)
  -g directives : set global directives out of configuration file

[[email protected] sbin]#
时间: 2025-01-04 16:31:20

Centos服务器搭建(5)——安装ngnix的相关文章

服务器搭建--Linux安装erlang

1.安装依赖环境: 1)安装GCC GCC-C++ Openssl等模块,安装过就不需要安装了 yum -y install make gcc gcc-c++ kernel-devel m4 ncurses-devel openssl-devel 2)安装ncurses yum -y install ncurses-devel 2.下载erlang: 官网下载:http://erlang.org/download/ 或者直接下载 [[email protected] ~]# cd /usr/lo

服务器搭建--Linux安装rabbitmq

安装rabbitmq需要先安装erlang:安装erlang参考https://blog.csdn.net/ztx114/article/details/79912570 1.下载rabbitmq-server-generic-unix-3.6.15.tar.xz 我是安装在/usr/local/soft/目录下,首先切换到/usr/local/soft/目录没有soft文件夹的需要先创建文件夹: cd /usr/local/soft/[[email protected] soft]# tar

[PXE] linux(centos)PXE服务器搭建,安装,启动及pxe协议详解

本章Blog相关Linux知识点 工作环境中,想要安装Linux但是计算机没有光驱,或者是有大批量的计算机需要同时安装Linux,就需要通过部署环境PXE+DHCP+TFTP+HTTP+kickstart 方式来实现了 . PXE是什么: PXE,预启动执行环境(Preboot eXecution Environment,PXE,也被称为预执行环境)提供了一种使用网络接口(Network Interface)启动计算机的机制.这种机制让计算机的启动可以不依赖本地数据存储设备(如硬盘)或本地已安装

Centos服务器搭建(2)——安装tomcat

首先已经安装完JDK 1.下载apache-tomcat-7.0.57.tar.gz 2.复制到/opt 解压 [[email protected] opt]# cp /root/apache-tomcat-7.0.57.tar.gz /opt/ [[email protected] opt]# tar -xzvf apache-tomcat-7.0.57.tar.gz 3. 设置环境变量 [[email protected] opt]# vi /etc/profile ##shift+g定位到

Centos服务器搭建(1)——安装jdk

1.下载jdk-7u51-linux-x64.tar.gz 2.查看原先系统有没有安装jdk [[email protected] ~]# rpm -qa|grep java 有的话先执行下面的命令删除 [[email protected] ~]# rpm –e java 3.复制到/opt 解压 [[email protected] ~]# cp /root/jdk-7u51-linux-x64.tar.gz /opt/[[email protected] ~]# cd /opt/[[emai

Centos服务器搭建(4)——安装mysql

1.先检查系统有没有安装mysql [[email protected] opt]# rpm -qa|grep mysql # 我们看到,并没有安装mysql,但是有一个mysql的libs开发包插件,他是干什么的呢? # 解释:由于CentOS6.4系统自带就有postfix服务,而这个mysql-libs呢就是支持这个postfix服务的,如果我们不使用到postfix,那就卸载掉吧,而且每一个mysql-server安装的时候,后自带安装上这个mysql-libs. #删除mysl-;ib

Centos服务器搭建(3)——安装maven

首先已经安装完JDK 1.下载apache-maven-3.2.3-bin.tar.gz 2.复制到/opt 解压 [[email protected] opt]# cp apache-maven-3.2.3-bin.tar.gz /opt/ [[email protected] opt]# tar -xzvf apache-maven-3.2.3-bin.tar.gz 3. 设置环境变量 [[email protected] opt]# vi /etc/profile ##shift+g定位到

Centos服务器搭建(6)——安装JDK

1.下载jdk-7u51-linux-x64.tar.gz 拷贝解压到/opt [[email protected] ~]# cp /home/temp/jdk-7u51-linux-x64.tar.gz /opt/ 2.设置环境变量 export JAVA_HOME=/opt/jdk1.7.0_51 export JRE_HOME=$JAVA_HOME/jre export PATH=$PATH:$JAVA_HOME/bin export CLASSPATH=./:$JAVA_HOME/lib

VMWare之CentOS服务器搭建

描述 用于测试的原因,需要搭建一个虚拟机集群进行微服务测试.版本说明: 1.VWMare12 2.Linux CentOS7.6 3.宿主机系统 windows10 安装VWMare与CentOS 具体安装在这里不描述,很简单,安装流程来就行了. [CentOS官网镜像下载地址](https://www.centos.org/download/) [WMWare官方下载地址](https://my.vmware.com/web/vmware/downloads) 备注:选择Minimal还是DV