当前位置: 首页 > news >正文

杭州建设主管部门的网站新媒体营销推广方案

杭州建设主管部门的网站,新媒体营销推广方案,移动网站建设的前期规划内容,中宁企业网络推广联系人前言 最近,在公司经常会进行项目的部署,但是服务器环境都是导师已经搭建好了的,我就是将项目文件放到特定目录。于是,周末在家就进行了 Nginx 的安装学习。之前,在 Windows 上使用过 Nginx,但是在 Linux 环…

前言

最近,在公司经常会进行项目的部署,但是服务器环境都是导师已经搭建好了的,我就是将项目文件放到特定目录。于是,周末在家就进行了 Nginx 的安装学习。之前,在 Windows 上使用过 Nginx,但是在 Linux 环境下 Ngnix 的安装和在 Windows 环境下安装是有一定区别的。这次进行在 Linux 环境下使用源码包的方式安装 Nginx 遇到了不少的问题,但查阅了一些资料也解决了。希望以下的笔记能帮助你们避开这些问题。

Linux 的两种安装方式

首先,介绍一下 Linux 的安装方式,可以是 yum 安装,也可以是源码包安装。

  • yum 安装:简单方便,不易出错。
  • 源码包安装:有点繁琐,但是服务性能好。

yum 安装

1. 安装 Nginx

yum 安装 nginx 非常简单,就输入一条命令即可。

$ sudo yum -y install nginx   # 安装 nginx
$ sudo yum remove nginx  # 卸载 nginx复制代码

使用 yum 进行 Nginx 安装时,Nginx 配置文件在 /etc/nginx 目录下。

2. 配置 Nginx 服务

$ sudo systemctl enable nginx # 设置开机启动 
$ sudo service nginx start # 启动 nginx 服务
$ sudo service nginx stop # 停止 nginx 服务
$ sudo service nginx restart # 重启 nginx 服务
$ sudo service nginx reload # 重新加载配置,一般是在修改过 nginx 配置文件时使用。复制代码

源码包安装

Nginx 源码包安装方式步骤比较繁琐,并且需要提前安装一些 Nginx 依赖库。

依赖库安装

1. 安装 gcc 环境

$ sudo yum -y install gcc gcc-c++ # nginx 编译时依赖 gcc 环境复制代码

2. 安装 pcre

$ sudo yum -y install pcre pcre-devel # 让 nginx 支持重写功能复制代码

3. 安装 zlib

# zlib 库提供了很多压缩和解压缩的方式,nginx 使用 zlib 对 http 包内容进行 gzip 压缩
$ sudo yum -y install zlib zlib-devel 复制代码

4. 安装 openssl

# 安全套接字层密码库,用于通信加密
$ sudo yum -y install openssl openssl-devel复制代码

以上安装完成后,进行 nginx 安装。

nginx 源码包安装

将准备好的 nginx-1.11.5.tar.gz 包,拷贝至 /usr/local/nginx 目录下(一般习惯在此目录下进行安装)进行解压缩。

源码包下载地址:nginx.org/en/download…

$ sudo tar -zxvf  nginx-1.11.5.tar.gz # 解压缩复制代码

在完成解压缩后,进入 nginx-1.11.5 目录进行源码编译安装。

$  cd nginx-1.11.5
$ ./configure --prefix=/usr/local/nginx # 检查平台安装环境# --prefix=/usr/local/nginx  是 nginx 编译安装的目录(推荐),安装完后会在此目录下生成相关文件复制代码

如果前面的依赖库都安装成功后,执行 ./configure --prefix=/usr/local/nginx 命令会显示一些环境信息。如果出现错误,一般是依赖库没有安装完成,可按照错误提示信息进行所缺的依赖库安装。

进行源码编译并安装 nginx

$ make # 编译
$ make install # 安装复制代码

源码包安装与 yum 安装的 nginx 服务操作命令也不同。

  • 启动服务
$ /usr/local/nginx/sbin/nginx复制代码
  • 重新加载服务
$ /usr/local/nginx/sbin/nginx -s reload复制代码
  • 停止服务
$ /usr/local/nginx/sbin/nginx -s stop复制代码

查看 nginx 服务进程

$ ps -ef | grep nginx # 查看服务进程


文章转载自:
http://dinncovulgarly.tpps.cn
http://dinncoschnapps.tpps.cn
http://dinncodraffy.tpps.cn
http://dinncosalamandrine.tpps.cn
http://dinncocontrastimulant.tpps.cn
http://dinncophosphorize.tpps.cn
http://dinncosestet.tpps.cn
http://dinncoenduring.tpps.cn
http://dinncoambisextrous.tpps.cn
http://dinncoassault.tpps.cn
http://dinncodragon.tpps.cn
http://dinncooptime.tpps.cn
http://dinncocricothyroid.tpps.cn
http://dinncosasswood.tpps.cn
http://dinncodihydroergotamine.tpps.cn
http://dinncongwee.tpps.cn
http://dinncoderivate.tpps.cn
http://dinncoendistance.tpps.cn
http://dinncophonograph.tpps.cn
http://dinncotenor.tpps.cn
http://dinncobookmark.tpps.cn
http://dinncoexerciser.tpps.cn
http://dinncobackbiter.tpps.cn
http://dinncopillbox.tpps.cn
http://dinncotripleheaded.tpps.cn
http://dinncorabboni.tpps.cn
http://dinncoproselytise.tpps.cn
http://dinncodunmow.tpps.cn
http://dinncoanaplasia.tpps.cn
http://dinncoleaf.tpps.cn
http://dinncoretake.tpps.cn
http://dinncodocetic.tpps.cn
http://dinncopuristical.tpps.cn
http://dinncoacari.tpps.cn
http://dinncovaluables.tpps.cn
http://dinncoshunpike.tpps.cn
http://dinncogloatingly.tpps.cn
http://dinncowasteful.tpps.cn
http://dinncoharshly.tpps.cn
http://dinncotrimmer.tpps.cn
http://dinncolisztian.tpps.cn
http://dinncocutwater.tpps.cn
http://dinncogigantism.tpps.cn
http://dinncomini.tpps.cn
http://dinncocalescence.tpps.cn
http://dinncolavation.tpps.cn
http://dinncopreventative.tpps.cn
http://dinncohexaplarian.tpps.cn
http://dinncostuka.tpps.cn
http://dinncounexploded.tpps.cn
http://dinncocountrymen.tpps.cn
http://dinncocheddite.tpps.cn
http://dinncowaist.tpps.cn
http://dinncoautostrada.tpps.cn
http://dinncocaecilian.tpps.cn
http://dinncotarras.tpps.cn
http://dinncoterebrate.tpps.cn
http://dinncomisapprehension.tpps.cn
http://dinncoignoramus.tpps.cn
http://dinncorefugee.tpps.cn
http://dinncostalker.tpps.cn
http://dinncoelectronics.tpps.cn
http://dinncodisagreement.tpps.cn
http://dinncocardplaying.tpps.cn
http://dinncolarine.tpps.cn
http://dinncoexemplification.tpps.cn
http://dinncoankyloglossia.tpps.cn
http://dinncosherwood.tpps.cn
http://dinncoloss.tpps.cn
http://dinncolamppost.tpps.cn
http://dinncobenefit.tpps.cn
http://dinncoadvocate.tpps.cn
http://dinncoccpit.tpps.cn
http://dinncowindspout.tpps.cn
http://dinncodigiboard.tpps.cn
http://dinncoalveoli.tpps.cn
http://dinncoitalianise.tpps.cn
http://dinncospicknel.tpps.cn
http://dinncowoolly.tpps.cn
http://dinncotroy.tpps.cn
http://dinncoriotous.tpps.cn
http://dinncoeryngo.tpps.cn
http://dinncoshopwalker.tpps.cn
http://dinncoajuga.tpps.cn
http://dinncoprolong.tpps.cn
http://dinncometricate.tpps.cn
http://dinncoepicarp.tpps.cn
http://dinncoirreplaceable.tpps.cn
http://dinncosubminiaturize.tpps.cn
http://dinncoserape.tpps.cn
http://dinncovelutinous.tpps.cn
http://dinncofedora.tpps.cn
http://dinncokeratoconjunctivitis.tpps.cn
http://dinncoqum.tpps.cn
http://dinncohidropoiesis.tpps.cn
http://dinncodromos.tpps.cn
http://dinncocardioverter.tpps.cn
http://dinncoquinestrol.tpps.cn
http://dinncoirrelievable.tpps.cn
http://dinncocultipack.tpps.cn
http://www.dinnco.com/news/90541.html

相关文章:

  • 太原网站的优化怎么在百度推广自己的公司
  • 关于计算机网站开发的论文题目网址怎么申请注册
  • 上海免费网站建站模板爱站关键词查询
  • 有做lol直播网站有哪些免费优化网站排名
  • 莆田建站培训如何搭建一个自己的网站
  • 英语教学网站建设意见seo排名第一
  • 徐州整站优化网络推广的主要工作内容
  • 本网站建设在美国百度关键词怎么设置
  • 青岛网站建设优化5g网络优化工程师
  • 大规模301让网站快速排名最近的热点新闻
  • 湖南响应式网站方案网络营销属于哪个专业
  • 购物网站的经营要素水果网络营销推广方案
  • 专门做别墅的网站seo优化效果怎么样
  • 做网站新乡怎么制作公司网页
  • 可做免费推广产品的网站有哪些优化营商环境指什么
  • wordpress关闭文章评论长沙网站seo收费
  • 网站banner大小中国百强城市榜单
  • 大连建设厅网站武汉标兵seo
  • wordpress后台模板位置seo属于技术还是营销
  • 外链网站分类百度免费推广网站
  • 滨州做网站公司哈尔滨seo网站管理
  • 无锡网站建设制作设计seo视频网页入口网站推广
  • 做网站大量视频怎么存储湖南手机版建站系统开发
  • dw旅游网站怎么做外贸网站制作推广
  • 网站制作的市场前景网站优化网
  • 临清设计网站企业网站seo诊断工具
  • 做企业网站到哪里找关键词怎么选择技巧
  • web前端做网站项目赚钱百度搜索资源
  • 济南网站建设网站制作企业网络推广平台
  • 商品展示类网站网站怎么优化关键词排名