博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux state 方式 安装nginx 服务
阅读量:6304 次
发布时间:2019-06-22

本文共 482 字,大约阅读时间需要 1 分钟。

第3章 Linux state 方式安装nginx 服务 

3.1 State 方式安装nginx 

1,创建相应的目录

a)Mkdir –p /srv/nginx 

2,生成nginx.sls 文件

a)Vim /srv/nginx/init.sls

nginx:

pkg:

- installed

service:

- running

- watch:

- pkg: nginx

- file: /etc/nginx/nginx.conf

/etc/nginx/nginx.conf:

file.managed:

- source: salt://nginx/nginx.conf

- user: root

- group: root

- mode: 644

b)生成nginx 配置文件

i.Copy线上nginx.conf 

3,安装nginx 

4, Salt ‘*linux” state.sls nginx 

5,

 

本文转自 swq499809608 51CTO博客,原文链接:http://blog.51cto.com/swq499809608/1184484

转载地址:http://gcbxa.baihongyu.com/

你可能感兴趣的文章
安装nginx 常见错误及 解决方法
查看>>
Gorun8电子商城
查看>>
在之前链表的基础上改良的链表
查看>>
android编译系统makefile(Android.mk)写法
查看>>
MD5源代码C++
查看>>
Eclipse 添加 Ibator
查看>>
Linux中变量$#,$@,$0,$1,$2,$*,$$,$?的含义
查看>>
Python编程语言
查看>>
十四、转到 linux
查看>>
Got error 241 'Invalid schema
查看>>
ReferenceError: event is not defined
查看>>
男人要内在美,更要外在美
查看>>
为什么要跟别人比?
查看>>
app启动白屏
查看>>
Oracle 提高查询性能(基础)
查看>>
学习知识应该像织网一样去学习——“网状学习法”
查看>>
Hadoop集群完全分布式安装
查看>>
QString,char,string之间赋值
查看>>
我的友情链接
查看>>
Nginx+mysql+php-fpm负载均衡配置实例
查看>>