Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leoiceo/OpenSA
资产管理、资产采集、灰度发布、反向代理、批量任务、任务编排、计划任务、日志审计、权限管理、角色管理、部门管理、运维自动化
https://github.com/leoiceo/OpenSA
ansible cd celery ci cmdb devops django linux nginx ops python python3 ssh task windows
Last synced: 3 months ago
JSON representation
资产管理、资产采集、灰度发布、反向代理、批量任务、任务编排、计划任务、日志审计、权限管理、角色管理、部门管理、运维自动化
- Host: GitHub
- URL: https://github.com/leoiceo/OpenSA
- Owner: leoiceo
- License: apache-2.0
- Created: 2019-01-11T08:18:47.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-02-07T22:14:06.000Z (over 1 year ago)
- Last Synced: 2024-05-20T20:23:24.347Z (6 months ago)
- Topics: ansible, cd, celery, ci, cmdb, devops, django, linux, nginx, ops, python, python3, ssh, task, windows
- Language: JavaScript
- Homepage: https://blog.imdst.com
- Size: 64.3 MB
- Stars: 299
- Watchers: 17
- Forks: 107
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audit/__init__.py
Awesome Lists containing this project
- awesome-ops-system - leoiceo/OpenSA - 资产管理、资产采集、灰度发布、反向代理、批量任务、任务编排、计划任务、日志审计、权限管理、角色管理、部门管理、运维自动化 http://opensa.imdst.com (运维相关管理系统 / 运维管理系统)
README
# OpenSA 运维自动化平台
[![Python3](https://img.shields.io/badge/python-3.7-green.svg?style=plastic)](https://www.python.org/)
[![Django](https://img.shields.io/badge/django-2.1-brightgreen.svg?style=plastic)](https://www.djangoproject.com/)
[![Ansible](https://img.shields.io/badge/ansible-2.6.3-blue.svg?style=plastic)](https://www.ansible.com/)
[![Paramiko](https://img.shields.io/badge/paramiko-2.4.2-green.svg?style=plastic)](http://www.paramiko.org/)#### 架构说明
* Django 2.1 + Mysql 5.7 + redis 5.0 + celery v4.2.0
* 生产环境请使用 nginx + uwsgi,不对公网开放,或者使用SSL双向认证
* 命令和文件分发基于SSH协议,支持Linux/Windows(cygwin)|支持快速修改为ansible
* 使用2.7版本inspina模版
* 支持国际化(默认中/英),有些细节未完善,欢迎加入完善项目,联系WX “leoiceo” 或者加群(142189771)
* 如果系统自己用得还不错,请多多推荐给身边的朋友 (star!star!star!......)
* 欢迎提交功能开发和优化建议!#### [screenshots](https://github.com/leoiceo/OpenSA/wiki/screenshots)
* screenshots文件200M以上,建议 download screenshots 目录进行查看#### [中文指南 wiki](https://github.com/leoiceo/OpenSA/wiki)
#### 安装部署说明
* 系统: CentOS 7
```
setenforce 0
sed -i "s/enforcing/disabled/g" /etc/selinux/config# 修改字符集,否则可能报 input/output error的问题,因为日志里打印了中文
localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8
export LC_ALL=zh_CN.UTF-8
echo 'LANG="zh_CN.UTF-8"' > /etc/locale.conf
```
* 安装 Python3 && redis
```
wget http://www.python.org/ftp/python/3.7.1/Python-3.7.1.tar.xz
tar -xvf Python-3.7.1.tar.xz && cd Python-3.7.1
./configure --prefix=/usr/local/python37
make && make installyum install redis -y
service redis start##settings 设置了密码,可自行修改Redis.conf
```
* 拉取代码安装模块
```
cd /opt/
git clone https://github.com/leoiceo/OpenSA
wget --no-check-certificate https://bootstrap.pypa.io/ez_setup.py
python ez_setup.py --insecure# 创建日志目录
mkdir -p /data/opensa/logs
# 修改pypi源
mkdir -p ~/.pip/
cat > ~/.pip/pip.conf <