码迷,mamicode.com
首页 > Web开发 > 详细

saltstack学习-8:web管理页面(halite)

时间:2018-01-07 11:38:45      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:ali   err   post   event   index   var   art   test   div   

安装halite

 

方法一:失败,待查原因

1、安装并启动salt-api

  • yum install salt-api –y
  • service salt-api start
  • chkconfig salt-api on

2、安装halite及其依赖文件

  • yum install python-pip –y
  • pip install --upgrade pip
  • pip install -U halite
  • pip install cherrypy
  • pip install paste
  • yum install python-devel gccy
  • pip install gevent
  • pip install pyopenssl
  • pip install tornado

创建登录用户

  • useradd   salt
  • echo "salt" |passwd --stdin salt

3、修改master配置文件

 

 

方法二:

#yum install git

下载代码

#cd /var/www

#git clone https://github.com/saltstack/halite

生成index.html

# cd halite/halite
# ./genindex.py -C

安装salt-api

# yum install salt-api

添加登陆用户

# useradd salt
# echo salt|passwd –stdin salt

配置salt master文件

配置salt的master文件,添加:

rest_cherrypy:
 host: 0.0.0.0
 port: 8080
 debug: true
 static: /root/halite/halite
 app: /root/halite/halite/index.html
external_auth:
   pam:
     salt:
	 - .*
	 - ‘@runner‘
	 - ‘@wheel‘

重启master;

# /etc/init.d/salt-master restart

启动 salt-api,启动web界面(两种启动方式)

#cd /var/www/halite/halite
(1)#nohup python2.6 server_bottle.py -d -C -l debug -s cherrypy &       #不使用nohup的话为前台运行

(2)# salt-api –d   ---后台运行

然后打开http://ip:8080/app,通过salt/salt登陆即可。

 

 

官方安装教程:

https://docs.saltstack.com/en/latest/topics/tutorials/halite.html

saltstack学习-8:web管理页面(halite)

标签:ali   err   post   event   index   var   art   test   div   

原文地址:https://www.cnblogs.com/snailshadow/p/8215796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!