stackstorm webui安装 1 配置账号和密码 yum -y install httpd-tools #添加账号st2admin密码Ch@ngeMe,用来登录WEBUI echo 'Ch@ngeMe' | sudo htpasswd -i /etc/st2/htpasswd st2admin #[auth] enable = True 修改【auth】下的enable的值为True即可 vim /etc/st2/st2.conf st2ctl restart-component st2api #输入上面的默认密码Ch@ngeMe st2 login st2admin st2 action list 2 安装nginx nginx用于提供WebUI静态文件,将HTTP重定向到HTTPS,提供SSL终止以及反向代理st2auth和st2api API端点。 要设置它:安装st2web和nginx包,生成证书或将现有证书放在/etc/ssl/st2下,并使用StackStorm提供的站点配置文件st2.conf配置nginx。 注意:StackStorm依赖于Nginx版本> = 1.7.5。 RHEL在软件包存储库中有一个较旧的版本,因此您需要添加官方的Nginx存储库: rpm --import http://nginx.org/keys/nginx_signing.key sh -c "cat <<EOT > /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/rhel/\$releasever/x86_64/ gpgcheck=1 enabled=1 EOT" 安装nginx,用官方的代替epel上的: sudo yum --disablerepo='epel' install -y nginx 或者: sed -i 's/^(enabled=1)$/exclude=nginx\n\1/g' /etc/yum.repos.d/epel.repo 安装st2web: yum -y install st2web 生成签名文件或者将已经存在的文件放到/etc/ssl/st2: mkdir -p /etc/ssl/st2 openssl req -x509 -newkey rsa:2048 -keyout /etc/ssl/st2/st2.key -out /etc/ssl/st2/st2.crt -days 365 -nodes -subj "/C=US/ST=California/L=Palo Alto/O=StackStorm/OU=Information Technology/CN=$(hostname)" 复制并启用提供的nginx配置文件: cp /usr/share/doc/st2/conf/nginx/st2.conf /etc/nginx/conf.d/ 在现有的/etc/nginx/nginx.conf中禁用default_server配置: sed -i 's/default_server//g' /etc/nginx/nginx.conf 启动nginx: systemctl restart nginx systemctl enable nginx webui访问: 在浏览器输入主机名或IP即可: http://192.168.1.85 账号:st2admin 密码: Ch@ngeMe 从外部访问API:https://${IP}/api/v1/${REST_ENDPOINT} 如: https://192.168.1.85/api/v1/actions https://192.168.1.85/api/v1/rules curl -X GET -H 'Connection: keep-alive' -H 'User-Agent: manual/curl' -H 'Accept-Encoding: gzip, deflate' -H 'Accept: /' -H 'X-Auth-Token: <YOUR_TOKEN>' https://192.168.1.85/api/v1/actions
标签:conf,ssl,etc,nginx,stackstorm,yum,webui,st2,安装 From: https://www.cnblogs.com/skyzy/p/16586795.html