当前位置: 首页 > 工具软件 > Halite > 使用案例 >

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

柳俊彦
2023-12-01

安装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

安装salt-api

添加登陆用户

配置salt master文件

配置salt的master文件,添加:

重启master;

启动 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

转载于:https://www.cnblogs.com/snailshadow/p/8215796.html

 类似资料: