Mac 安装

强颜欢笑 提交于 2019-12-23 23:48:28

【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>

sql建立数据库

 create database opsmanage DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
grant all privileges on opsmanage.* to root@'%' identified by 'password';

安装依赖

brew install libmagic

配置文件

conf/opsmanage.ini


[db]
engine = mysql
host = 127.0.0.1
port = 3307
user = root
password = 123456
database = opsmanage


[redis]
host = 127.0.0.1
port = 6379
password =
ansible_db = 3
celery_db = 4
default_db = 0

[deploy]
path = /Users/lijingjing/OpsManage/workspaces

初始化数据

python3 manage.py makemigrations wiki


python manage.py  createsuperuser
# 建立后台管理员帐号

https://github.com/welliamcao/OpsManage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!