Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
J
jumpserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
jumpserver
Commits
4f580e0d
Commit
4f580e0d
authored
Oct 24, 2018
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改启动脚本
parent
54b6e06d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
1 deletion
+18
-1
jms
jms
+18
-1
No files found.
jms
View file @
4f580e0d
...
@@ -42,10 +42,26 @@ try:
...
@@ -42,10 +42,26 @@ try:
except
:
except
:
pass
pass
def
check_database_connection
():
os
.
chdir
(
os
.
path
.
join
(
BASE_DIR
,
'apps'
))
for
i
in
range
(
60
):
print
(
"Check database connection ..."
)
code
=
subprocess
.
call
(
"python manage.py showmigrations users "
,
shell
=
True
)
if
code
==
0
:
print
(
"Database connect success"
)
return
time
.
sleep
(
1
)
print
(
"Connection database failed, exist"
)
sys
.
exit
(
10
)
def
make_migrations
():
def
make_migrations
():
print
(
"Check database structure change ..."
)
print
(
"Check database structure change ..."
)
os
.
chdir
(
os
.
path
.
join
(
BASE_DIR
,
'apps'
))
os
.
chdir
(
os
.
path
.
join
(
BASE_DIR
,
'apps'
))
if
len
(
os
.
listdir
(
'assets/migrations'
))
<
4
:
print
(
"Make database migrations ..."
)
subprocess
.
call
(
'python3 manage.py makemigrations'
,
shell
=
True
)
print
(
"Migrate model change to database ..."
)
subprocess
.
call
(
'python3 manage.py migrate'
,
shell
=
True
)
subprocess
.
call
(
'python3 manage.py migrate'
,
shell
=
True
)
...
@@ -56,6 +72,7 @@ def collect_static():
...
@@ -56,6 +72,7 @@ def collect_static():
def
prepare
():
def
prepare
():
check_database_connection
()
make_migrations
()
make_migrations
()
collect_static
()
collect_static
()
...
@@ -112,7 +129,6 @@ def parse_service(s):
...
@@ -112,7 +129,6 @@ def parse_service(s):
def
start_gunicorn
():
def
start_gunicorn
():
print
(
"
\n
- Start Gunicorn WSGI HTTP Server"
)
print
(
"
\n
- Start Gunicorn WSGI HTTP Server"
)
prepare
()
service
=
'gunicorn'
service
=
'gunicorn'
bind
=
'{}:{}'
.
format
(
HTTP_HOST
,
HTTP_PORT
)
bind
=
'{}:{}'
.
format
(
HTTP_HOST
,
HTTP_PORT
)
log_format
=
'
%(h)
s
%(t)
s "
%(r)
s"
%(s)
s
%(b)
s '
log_format
=
'
%(h)
s
%(t)
s "
%(r)
s"
%(s)
s
%(b)
s '
...
@@ -205,6 +221,7 @@ def start_service(s):
...
@@ -205,6 +221,7 @@ def start_service(s):
print
(
time
.
ctime
())
print
(
time
.
ctime
())
print
(
'Jumpserver version {}, more see https://www.jumpserver.org'
.
format
(
print
(
'Jumpserver version {}, more see https://www.jumpserver.org'
.
format
(
__version__
))
__version__
))
prepare
()
services_handler
=
{
services_handler
=
{
"gunicorn"
:
start_gunicorn
,
"gunicorn"
:
start_gunicorn
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment