配置文件需修改的内容及注意点:

Edit the master config file: 1. Uncomment and change the user: root value to your own user.

默认用户为root,可更改为自己的用户名

2. Uncomment and change the root_dir: / value to point to /path/to/your/virtualenv.

修改环境主路径

3. If you are running version 0.11.1 or older, uncomment and change the pidfile: /var/run/salt-master.pid value to point to /path/to/your/virtualenv/salt-master.pid.

在0.11.1及以前的版本需要把/var/run/salt-master.pid链接到自己的环境路径下的salt-master.pid.

Uncomment and change the id: value to something descriptive like “saltdev”. This isn’t strictly necessary but it will serve as a reminder of which Salt installation you are working with.

设置id的描述,虽然不是必要的但可以便于分清设备

确保你本地的salt安装正确且在运行的一系列操作

verify your local Salt installation is working: cd /path/to/your/virtualenv

salt-master  -c  ./etc/salt -d

salt-minion  -c  ./etc/salt -d

salt-key -c ./etc/salt -L

salt-key -c ./etc/salt -A

salt  -c  ./etc/salt ’*’ test.ping

其中-d为运行在debug模式

If you plan to run salt-call with this self-contained development environment in a masterless setup, you should invoke salt-call with -c /path/to/your/virtualenv/etc/salt so that salt can find the minion config file. Without the -c option, Salt finds its config files in /etc/salt.

如果运行在一个没有master的机器上,需要调用-c以便于设置自己的安装目录,没有-c就默认为/etc/salt

If you would like to log to the console instead of to the log file, remove the -d.

如果你想要把日志输出到控制台而不是log文件,把-d参数去除(安装时的日志输出,参看上文的安装时的命令)

The socket path is limited to 107 characters on Solaris and Linux, and 103 characters on BSD-based systems.

Solaris 和 Linux的 socket路径限制在107字符内,BSD系统限制在103个字符内

File descriptor limits Ensure that the system open file limit is raised to at least 2047:

# check your current limit :ulimit -n

系统可打开文件的数量是2047以上,如果你要查看当前最大可用数量,用命令ulimit -n,如果想提高打开文件的数量,用命令ulimit -n 2047或其他数字,重启后生效

最新文章

  1. 画图程序升级版Draw_v1
  2. Web Essentials之HTML和CSS操作技巧
  3. Java实现批量修改文件名称
  4. 【转】C#异步编程及其同步机制
  5. Java中堆、栈、常量池分析
  6. spring源码解析(一)---占位符解析替换
  7. 线上问题:如何定位解决CPU高占有率
  8. HDU6055 Regular polygon(计算几何)
  9. GCD之死锁
  10. 数据库表反向生成(一) MyBatis-generator与IDEA的集成
  11. poj-2001(字典树)
  12. 【模板】cdq分治代替树状数组(单点修改,区间查询)
  13. python+selenium,实现带有验证码的自动化登录功能
  14. Centos7下crontab+shell脚本定期自动删除文件
  15. zynq里面的AXI总线(2017-1-11)
  16. MySQL 5.7 的SSL加密方法
  17. jni头文件自动生成
  18. PHP debug_backtrace() 函数打印调用处的调试信息
  19. pythonNet day02
  20. MPI n 体问题

热门文章

  1. bzoj3277 串 (后缀数组+二分答案+ST表)
  2. CF 681
  3. IntelliJ IDEA的使用操作链接
  4. 2: Eclipse反编译工具Jad及插件JadClipse配置
  5. Array 新增加的一些API用法
  6. Jenkins创建job时Check-out Strategy各个选项详细说明(含图)
  7. django分页功能
  8. python自动化运维之路~DAY5
  9. Linux命令之rm
  10. Linux命令之touch