
大家好,又见面了,我是你们的朋友全栈君。
面向中小型企业设计的轻量级无 Agent 的自动化运维平台,整合了主机管理、主机批量执行、主机在线终端、文件在线上传下载、应用发布部署、在线任务计划、配置中心、监控、报警等一系列功能。
批量执行: 主机命令在线批量执行
在线终端: 主机支持浏览器在线终端登录
文件管理: 主机文件在线上传下载
任务计划: 灵活的在线任务计划
发布部署: 支持自定义发布部署流程
配置中心: 支持 KV、文本、json 等格式的配置
监控中心: 支持站点、端口、进程、自定义等监控
报警中心: 支持短信、邮件、钉钉、微信等报警方式
优雅美观: 基于 Ant Design 的 UI 界面
开源免费: 前后端代码完全开源#!/bin/bash
yum remove docker docker-common docker-selinux docker-engine
yum install -y yum-utils device-mapper-persistent-data lvm2 wget
wget -O /etc/yum.repos.d/docker-ce.repo https://download.docker.com/linux/centos/docker-ce.repo
sed -i 's+download.docker.com+mirrors.tuna.tsinghua.edu.cn/docker-ce+' /etc/yum.repos.d/docker-ce.repo
yum makecache
yum install docker-cesystemctl enable --now dockerdocker pull registry.aliyuncs.com/openspug/spugSDPath=/data/spugdata;[ -d ${SDPath} ] || mkdir -pv ${SDPath}
docker run -d --restart=always --name=spug -p 80:80 -v /mydata/:${SDPath} registry.aliyuncs.com/openspug/spugdocker exec spug init_spug admin spug.devdocker restart spug

发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/145805.html原文链接:https://javaforall.cn