-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.sql查询 新增redis帮助文档;完全禁止keys命令 #157
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
|
||
python3 manage.py runserver 0.0.0.0:9123 --insecure & | ||
nohup python3 manage.py runserver 0.0.0.0:9123 --insecure & | ||
|
||
# 编译翻译文件 | ||
python3 manage.py compilemessages | ||
|
||
# 启动Django Q cluster | ||
python3 manage.py qcluster & | ||
nohup python3 manage.py qcluster & |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -440,11 +440,11 @@ class ParamHistory(models.Model): | |
set_sql = models.CharField('在线变更配置执行的SQL语句', max_length=1024) | ||
user_name = models.CharField('修改人', max_length=30) | ||
user_display = models.CharField('修改人中文名', max_length=50) | ||
update_time = models.DateTimeField('修改时间', auto_now_add=True) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. model定义的变更都需要提供变更语句,目前版本v1.5.3,新SQL文件定义为v1.5.3_v1.5.4.sql,放在init_sql目录下 |
||
create_time = models.DateTimeField('参数被修改时间点', auto_now_add=True) | ||
|
||
class Meta: | ||
managed = True | ||
ordering = ['-update_time'] | ||
ordering = ['-create_time'] | ||
db_table = 'param_history' | ||
verbose_name = u'实例参数修改历史' | ||
verbose_name_plural = u'实例参数修改历史' | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ | |
}, | ||
columns: [ | ||
{ | ||
title: 'user', | ||
title: 'User@Host', | ||
field: 'user' | ||
}, { | ||
title: 'privileges', | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里去除验证过么有影响的吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import ldap 这个没用的。我们一直在用ldap的。