forked from hhyo/Archery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.sh
executable file
·97 lines (88 loc) · 2.79 KB
/
admin.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env bash
#########################################################################
# Update Time : 2020-02-25
# Author: alenx <alenx.hai@gmail.com>
#########################################################################
function init() {
echo "Initing archery"
echo "----------------"
echo "安装/更新可能缺少的依赖: mysql-community-devel gcc gcc-c++ python-devel"
sudo yum install -y epel-release
sudo yum install -y mysql-devel gcc gcc-c++ python-devel MySQL-python
sudo yum install -y python36 python3-devel python36-pip openldap-devel unixODBC-devel gettext
python3 -m pip install virtualenv -i https://mirrors.aliyun.com/pypi/simple/
if [[ ! -d "venv" ]]; then
virtualenv --system-site-packages -p python3 venv
fi
source ./venv/bin/activate
./venv/bin/python3 -m pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
echo "************************************************"
echo -e "\033[32m init archery success \033[0m"
echo -e "\033[32m welcome to archery 2.0 \033[0m"
}
function start() {
echo "Starting archery"
echo "----------------"
source ./venv/bin/activate
python3 manage.py collectstatic -v0 --noinput
supervisord -c supervisord.conf
echo -e "Start archery: [\033[32m ok \033[0m]"
}
function stop() {
echo "Stoping archery"
echo "----------------"
source ./venv/bin/activate
supervisorctl -c supervisord.conf stop all
kill -9 $(ps -ef | grep "Archery" | grep -v grep | awk '{print $2}')
echo -e "Stop archery: [\033[32m ok \033[0m]"
}
function restart() {
stop
echo ""
start
}
function adduser() {
echo "Add Admin Users "
source ./venv/bin/activate
python3 manage.py createsuperuser
echo -e "Add Users: [\033[32m ok \033[0m]"
}
function migration() {
echo "Migration archery"
echo "----------------"
source ./venv/bin/activate
python3 manage.py makemigrations sql
python3 manage.py migrate
python3 manage.py dbshell<sql/fixtures/auth_group.sql
python3 manage.py dbshell<src/init_sql/mysql_slow_query_review.sql
if [ $? == "0" ]; then
echo -e "Migration: [\033[32m ok \033[0m]"
else
echo -e "Migration: [\033[31m fail \033[0m]"
fi
}
case "$1" in
init )
init
;;
start )
start
;;
stop )
stop
;;
restart )
restart
;;
adduser )
adduser
;;
migration )
migration
;;
* )
echo "************************************************"
echo "Usage: sh admin {init|start|stop|restart|adduser|migration}"
echo "************************************************"
;;
esac