摘要:檢查是否已經安裝如果已安裝,使用命令刪除。安裝解壓縮進入解壓后的文件夾檢查環境依賴,最后會提供如下的配置信息編譯安裝執行后提示的配置信息運行中包含四個主要的目錄配置文件默認的訪問路徑各種日志信息二進制啟動腳本運行查看運行進程
YUM 安裝
1.下載nginx包
wget http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
2.建立nginx的yum倉庫
rpm -ivh nginx-release-centos-7-0.el7.ngx.noarch.rpm
3.下載并安裝nignx
yum install nginx
4.啟動nginx服務
systemctl start nginx
5.如果在瀏覽器中輸入部署nginx環境的IP不能訪問,可能是端口沒有開啟
firewall-cmd --zone=public --add-port=80/tcp --permanent
重啟防火墻
systemctl stop firewalld.service systemctl start firewalld.service
命令含義:
--zone #作用域
--add-port=80/tcp #添加端口,格式為:端口/通訊協議
--permanent #永久生效,沒有此參數重啟后失效
源碼編譯安裝 下載 Nginx 安裝包訪問 Nginx 下載頁面,這里下載固定版本:wget http://nginx.org/download/nginx-1.14.2.tar.gz。
檢查是否已經YUM安裝如果已安裝,使用 yum remove nginx 命令刪除。
? ~ yum list installed | grep nginx nginx.x86_64 1:1.12.2-2.el7 @epel nginx-all-modules.noarch 1:1.12.2-2.el7 @epel nginx-filesystem.noarch 1:1.12.2-2.el7 @epel nginx-mod-http-geoip.x86_64 1:1.12.2-2.el7 @epel nginx-mod-http-image-filter.x86_64 1:1.12.2-2.el7 @epel nginx-mod-http-perl.x86_64 1:1.12.2-2.el7 @epel nginx-mod-http-xslt-filter.x86_64 1:1.12.2-2.el7 @epel nginx-mod-mail.x86_64 1:1.12.2-2.el7 @epel nginx-mod-stream.x86_64 1:1.12.2-2.el7 @epel安裝 Nginx
# 解壓縮 ? tar -xvf nginx-1.14.2.tar.gz # 進入解壓后的文件夾 ? cd nginx-1.14.2 # 檢查環境依賴,最后會提供如下的配置信息 ? ./configure # 編譯安裝 ? make && make install
./configure 執行后提示的 nginx 配置信息:
nginx path prefix: "/usr/local/nginx" nginx binary file: "/usr/local/nginx/sbin/nginx" nginx modules path: "/usr/local/nginx/modules" nginx configuration prefix: "/usr/local/nginx/conf" nginx configuration file: "/usr/local/nginx/conf/nginx.conf" nginx pid file: "/usr/local/nginx/logs/nginx.pid" nginx error log file: "/usr/local/nginx/logs/error.log" nginx http access log file: "/usr/local/nginx/logs/access.log" nginx http client request body temporary files: "client_body_temp" nginx http proxy temporary files: "proxy_temp" nginx http fastcgi temporary files: "fastcgi_temp" nginx http uwsgi temporary files: "uwsgi_temp" nginx http scgi temporary files: "scgi_temp"運行 Nginx
/usr/local/nginx 中包含四個主要的目錄:
conf:配置文件 html:默認的 nginx 訪問路徑 logs:各種日志信息 sbin:二進制啟動腳本
# 運行 nginx /usr/local/nginx/sbin/nginx # 查看運行進程 ps -ef | grep nginx
文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。
轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/39463.html
摘要:搭建服務器因為這次我們實際上有在線安裝和離線安裝的不同的需求。參數可選需要重啟生效。改為后,顯示出文件的大概大小,單位是或者或者而默認為,顯示的文件時間為時間。 Nginx搭建repo服務器 因為這次我們實際上有在線安裝和離線安裝的不同的需求。所以我們同時采用了兩種方法來安裝nginx。 1. 在線安裝nginx 安裝nginx對應的源 rpm -Uvh http://nginx.or...
摘要:本文內容是,如何在下快速搭建環境。虛擬機實體機環境都可以。按照提示,輸入。 本文內容是,如何在Linux centos7下快速搭建LNMP環境。虛擬機、實體機環境都可以。另外,安裝教程參考的是,下面這篇文章進行文字排版和內容擴充,感謝hcchanqing作者。CentOS6.2 yum安裝配置LNMP服務器(Nginx+PHP+MySQL) 特別提醒:本文系統用的Centos7,是7!...
閱讀 999·2023-04-25 14:41
閱讀 2457·2021-09-28 09:35
閱讀 3627·2019-08-30 15:53
閱讀 1946·2019-08-29 15:26
閱讀 1071·2019-08-28 17:59
閱讀 4311·2019-08-26 13:45
閱讀 2842·2019-08-26 13:33
閱讀 1646·2019-08-26 11:46