如何在ubuntu下 安装nginx服务器
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在ubuntu下 安装nginx服务器相关的知识,希望对你有一定的参考价值。
你好,安装nginx可以按照以下方法进行:1、打开百度在搜索栏输入nginx找到nginx官网,点击进入,点击最新发布版,开始下载。
2、配置编译安装,配置./configure --prefix=/usr/local/nginx编译、安装make && make install配置过程可能出现:
错误描述:error: the HTTP rewrite module requires the PCRE library
解决方法:
需要安装pcre包。
sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev
你可能还需要安装
sudo apt-get install openssl libssl-dev
3、启动nginx,进入nginx安装目录,找到nginx目录所在目录,执行./nginx -c /usr/local/nginx/conf/nginx.conf启动服务;
在浏览器输入web服务器地址http://127.0.0.1,浏览器显示速度超级快,说明nginx安装启动成功。
希望我的回答可以帮到你。 参考技术A 1这些设置可能会有所不同,你需要根据不同情况进行修改。
2安装Apache2
2.切换管理员身份
在Ubuntu中需要用root身份进行操作,所以用下面的命令确保以root身份登录:
sudo su
3.开始安装mysql5
apt-get install mysql-server mysql-client
你将被要求提供一个MySQL的root用户的密码,我们需要在红色区域设置密码。
New password for the MySQL "root" user: <-- yourrootsqlpassword
Repeat password for the MySQL "root" user: <-- yourrootsqlpassword
4.安装Apache2
Apache2的是作为一个Ubuntu的软件包,因此我们可以直接用下面命令安装它:
apt-get install apache2
5.安装php5
我们可以直接安装PHP5和Apache的PHP5的模块,如下:
apt-get install php5 libapache2-mod-php5
安装完需要重启
/etc/init.d/apache2 restart
6.测试的PHP5并获取PHP5安装的详细信息:
默认网站的文件根目录是在/var/www下中。现在我们将在该目录中创建一个小型PHP文件(info.php的)在浏览器中调用它。该文件将显示很多关于我们的PHP安装,如安装的PHP版本和有用的一些细节。
7.PHP5获得MySOL的支持
让PHP在MySQL中获得支持,我们可以安装的php-mysql软件包。安装一些其他的PHP5模块,以及您可能需要的应用程序,这是一个好主意:
apt-cache search php5
还安装需要安装的
apt-get install php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
现在重新启动Apache2的:
/etc/init.d/apache2 restart
8.安装phpMyAdmin
phpMyAdmin是一个网络接口,通过它可以管理你的MySQL数据库。
apt-get install phpmyadmin
你会看到以下问题:
Web server to reconfigure automatically: <-- apache2
Configure database for phpmyadmin with dbconfig-common? <-- No
如何完成Ubuntu16.04编译安装Nginx
NGINX可以用作http/https服务器、反向代理服务器、邮件代理服务器、负载平衡器、TLS终结者或缓存服务器。它的设计非常模块化。它有本地模块和由社区创建的第三方模块。它是用C语言编写的,它是一种非常快速和轻量级的软件。注意:NGINX有两个版本流并行运行——稳定和主线。两个版本都可以在生产服务器上使用。建议在生产中使用主线版本。
从源代码中安装NGINX是相对“容易”的——下载最新版本的NGINX源代码,配置、构建和安装它。
在本教程中,我将使用主线版本,在撰写本文时是1.13.1。当更新版本可用时,更新版本号。
从源代码构建NGINX的需求
强制要求:
OpenSSL库版本1.0.2-1.1.0
Zlib库版本1.1.3-1.2.11。
PCRE库版本在4.4-8.40之间
GCC编译器
可选的要求:
PERL
LIBATOMIC_OPS
LibGD
MaxMind GeoIP
libxml2
libxslt
在你开始之前
1、使用sudo访问创建常规用户。
2、切换到新用户:
su - <username>
3、系统更新:
sudo apt update && sudo apt upgrade -y
从源代码构建NGINX
1、NGINX是一个用C编写的程序,所以我们需要安装C编译器(GCC)。
sudo apt install build-essential -y
2、下载最新版本的NGINX源代码并提取它:
wget https://nginx.org/download/nginx-1.13.1.tar.gz && tar zxvf nginx-1.13.1.tar.gz
3、下载NGINX依赖项的源代码并提取它们:
NGINX依赖于3个库:PCRE、zlib和OpenSSL:
PCRE version 4.4 - 8.40
wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz && tar xzvf pcre-8.40.tar.gz
zlib version 1.1.3 - 1.2.11
wget http://www.zlib.net/zlib-1.2.11.tar.gz && tar xzvf zlib-1.2.11.tar.gz
OpenSSL version 1.0.2 - 1.1.0
wget https://www.openssl.org/source/openssl-1.1.0f.tar.gz && tar xzvf openssl-1.1.0f.tar.gz
4、删除所有. tar.gz文件。我们不再需要他们了:
rm -rf *.tar.gz
5、转到NGINX源目录:
cd ~/nginx-1.13.1
6、为了帮助,您可以通过运行来列出可用的配置开关:
./configure --help
7、配置、编译和安装NGINX:
./configure --prefix=/usr/share/nginx
--sbin-path=/usr/sbin/nginx
--modules-path=/usr/lib/nginx/modules
--conf-path=/etc/nginx/nginx.conf
--error-log-path=/var/log/nginx/error.log
--http-log-path=/var/log/nginx/access.log
--pid-path=/run/nginx.pid
--lock-path=/var/lock/nginx.lock
--user=www-data
--group=www-data
--build=Ubuntu
--http-client-body-temp-path=/var/lib/nginx/body
--http-fastcgi-temp-path=/var/lib/nginx/fastcgi
--http-proxy-temp-path=/var/lib/nginx/proxy
--http-scgi-temp-path=/var/lib/nginx/scgi
--http-uwsgi-temp-path=/var/lib/nginx/uwsgi
--with-openssl=../openssl-1.1.0f
--with-openssl-opt=enable-ec_nistp_64_gcc_128
--with-openssl-opt=no-nextprotoneg
--with-openssl-opt=no-weak-ssl-ciphers
--with-openssl-opt=no-ssl3
--with-pcre=../pcre-8.40
--with-pcre-jit
--with-zlib=../zlib-1.2.11
--with-compat
--with-file-aio
--with-threads
--with-http_addition_module
--with-http_auth_request_module
--with-http_dav_module
--with-http_flv_module
--with-http_gunzip_module
--with-http_gzip_static_module
--with-http_mp4_module
--with-http_random_index_module
--with-http_realip_module
--with-http_slice_module
--with-http_ssl_module
--with-http_sub_module
--with-http_stub_status_module
--with-http_v2_module
--with-http_secure_link_module
--with-mail
--with-mail_ssl_module
--with-stream
--with-stream_realip_module
--with-stream_ssl_module
--with-stream_ssl_preread_module
--with-debug
--with-cc-opt=‘-g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2‘
--with-ld-opt=‘-Wl,-Bsymbolic-functions -fPIE -pie -Wl,-z,relro -Wl,-z,now‘
make
sudo make install
8、从主目录中删除所有下载的文件,在这个例子中/home/username:
cd ~
rm -r nginx-1.13.1/ openssl-1.1.0f/ pcre-8.40/ zlib-1.2.11/
9、检查NGINX版本和编译时选项:
sudo nginx -v && sudo nginx -V
nginx version: nginx/1.13.0 (Ubuntu)
built by gcc 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4)
built with OpenSSL 1.1.0f 25 May 2017
TLS SNI support enabled
configure arguments: --prefix=/etc/nginx . . .
. . .
. . .
10、检查语法和潜在错误:
sudo nginx -t
Will throw this error nginx: [emerg] mkdir() "/var/lib/nginx/body" failed (2: No such file or directory)
Just create directory
mkdir -p /var/lib/nginx && sudo nginx -t
11、为NGINX创建systemd单元文件:
sudo vim /etc/systemd/system/nginx.service
12、复制/粘贴以下内容:
注意:根据NGINX的编译方式,PID文件和NGINX二进制文件的位置可能会有所不同。
[Unit]
Description=A high performance web server and a reverse proxy server
After=network.target
[Service]
Type=forking
PIDFile=/run/nginx.pid
ExecStartPre=/usr/sbin/nginx -t -q -g ‘daemon on; master_process on;‘
ExecStart=/usr/sbin/nginx -g ‘daemon on; master_process on;‘
ExecReload=/usr/sbin/nginx -g ‘daemon on; master_process on;‘ -s reload
ExecStop=-/sbin/start-stop-daemon --quiet --stop --retry QUIT/5 --pidfile /run/nginx.pid
TimeoutStopSec=5
KillMode=mixed
[Install]
WantedBy=multi-user.target
13、启动并启用NGINX服务:
sudo systemctl start nginx.service && sudo systemctl enable nginx.service
14、检查NGINX是否会在重新启动后启动:
sudo systemctl is-enabled nginx.service
enabled
15、检查NGINX是否在运行:
sudo systemctl status nginx.service
ps aux | grep nginx
curl -I 127.0.0.1
16、重新启动你的Ubuntu VPS,以验证NGINX自动启动:
sudo shutdown -r now
17、创建UFW NGINX应用程序概要文件:
sudo vim /etc/ufw/applications.d/nginx
18、复制/粘贴以下内容:
[Nginx HTTP]
title=Web Server (Nginx, HTTP)
description=Small, but very powerful and efficient web server
ports=80/tcp
[Nginx HTTPS]
title=Web Server (Nginx, HTTPS)
description=Small, but very powerful and efficient web server
ports=443/tcp
[Nginx Full]
title=Web Server (Nginx, HTTP + HTTPS)
description=Small, but very powerful and efficient web server
ports=80,443/tcp
19、现在,验证UFW应用概要文件的创建和识别:
sudo ufw app list
Available applications:
Nginx Full
Nginx HTTP
Nginx HTTPS
OpenSSH
结论
就是这样。您现在已经安装了NGINX的最新版本。它是静态编译的,针对一些重要的库,比如OpenSSL。通常,系统的OpenSSL版本已经过时了。通过使用新的OpenSSL版本的安装方法,您可以利用chacha20poly1305这样的新密码,以及像TLS 1.3这样的协议,这些协议将在OpenSSL 1.1.1中可用(尚未发布)。
以上是关于如何在ubuntu下 安装nginx服务器的主要内容,如果未能解决你的问题,请参考以下文章