在虚拟机中的Nginx的安装
Posted eyesheart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在虚拟机中的Nginx的安装相关的知识,希望对你有一定的参考价值。
注意 一定要保持虚拟机有网!
1、把下载好的nginx1.7.9.tar.gz 复制到usr/local中
2、进入根目录(cd /)分别输入
yum -y install gcc gcc-c++ autoconf automake
yum install pcre-devel zlib zlib-devel openssl openssl-devel
下载需要的文件包 选项全部 y
3、进入usr/loacal cd /usr/local
4、解压文件 tar -zxvf nginx-1.7.9.tar.gz
5、进入文件 cd nginx-1.7.9
6、运行 ./configure
7、 make
8、 make install
9 、进入创建好的nginx中 cd /usr/local/nginx/sbin/
10 输入 ./nginx
测试
打开浏览器输入 http://localhost/
可以看到
Welcome to nginx!
If you see this page, the nginx web server is successfully installed and working. Further configuration is required.
For online documentation and support please refer to nginx.org.
Commercial support is available at nginx.com.
Thank you for using nginx.
表示成功!!!!!
以上是关于在虚拟机中的Nginx的安装的主要内容,如果未能解决你的问题,请参考以下文章
2022年超详细在CentOS 7上安装Nginx方法(源码安装)
nginx+tomcat9+redisson+redis+jdk1.8简单实现session共享