mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 21:28:00 +08:00
82 lines
2.9 KiB
Bash
82 lines
2.9 KiB
Bash
#! /bin/bash
|
|
|
|
set -e
|
|
if [ `netstat -anop|grep mysql|wc -l` -gt 0 ];then
|
|
echo "MySQL is Running."
|
|
else
|
|
MYSQL_ROOT_PWD="root@123"
|
|
ESZ_DB="dolphinscheduler"
|
|
echo "启动mysql服务"
|
|
chown -R mysql:mysql /var/lib/mysql /var/run/mysqld
|
|
find /var/lib/mysql -type f -exec touch {} \; && service mysql restart $ sleep 10
|
|
if [ ! -f /nohup.out ];then
|
|
echo "设置mysql密码"
|
|
mysql --user=root --password=root -e "UPDATE mysql.user set authentication_string=password('$MYSQL_ROOT_PWD') where user='root'; FLUSH PRIVILEGES;"
|
|
|
|
echo "设置mysql权限"
|
|
mysql --user=root --password=$MYSQL_ROOT_PWD -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '$MYSQL_ROOT_PWD' WITH GRANT OPTION; FLUSH PRIVILEGES;"
|
|
echo "创建dolphinscheduler数据库"
|
|
mysql --user=root --password=$MYSQL_ROOT_PWD -e "CREATE DATABASE IF NOT EXISTS \`$ESZ_DB\` CHARACTER SET utf8 COLLATE utf8_general_ci; FLUSH PRIVILEGES;"
|
|
echo "导入mysql数据"
|
|
nohup /opt/dolphinscheduler/script/create-dolphinscheduler.sh &
|
|
sleep 90
|
|
fi
|
|
|
|
if [ `mysql --user=root --password=$MYSQL_ROOT_PWD -s -r -e "SELECT count(TABLE_NAME) FROM information_schema.TABLES WHERE TABLE_SCHEMA='dolphinscheduler';" | grep -v count` -eq 38 ];then
|
|
echo "\`$ESZ_DB\` 表个数正确"
|
|
else
|
|
echo "\`$ESZ_DB\` 表个数不正确"
|
|
mysql --user=root --password=$MYSQL_ROOT_PWD -e "DROP DATABASE \`$ESZ_DB\`;"
|
|
echo "创建dolphinscheduler数据库"
|
|
mysql --user=root --password=$MYSQL_ROOT_PWD -e "CREATE DATABASE IF NOT EXISTS \`$ESZ_DB\` CHARACTER SET utf8 COLLATE utf8_general_ci; FLUSH PRIVILEGES;"
|
|
echo "导入mysql数据"
|
|
nohup /opt/dolphinscheduler/script/create-dolphinscheduler.sh &
|
|
sleep 90
|
|
fi
|
|
fi
|
|
|
|
/opt/zookeeper/bin/zkServer.sh restart
|
|
|
|
sleep 90
|
|
|
|
echo "启动api-server"
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh stop api-server
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh start api-server
|
|
|
|
|
|
|
|
echo "启动master-server"
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh stop master-server
|
|
python /opt/dolphinscheduler/script/del-zk-node.py 127.0.0.1 /dolphinscheduler/masters
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh start master-server
|
|
|
|
echo "启动worker-server"
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh stop worker-server
|
|
python /opt/dolphinscheduler/script/del-zk-node.py 127.0.0.1 /dolphinscheduler/workers
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh start worker-server
|
|
|
|
|
|
echo "启动logger-server"
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh stop logger-server
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh start logger-server
|
|
|
|
|
|
echo "启动alert-server"
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh stop alert-server
|
|
/opt/dolphinscheduler/bin/dolphinscheduler-daemon.sh start alert-server
|
|
|
|
|
|
|
|
|
|
|
|
echo "启动nginx"
|
|
/etc/init.d/nginx stop
|
|
nginx &
|
|
|
|
|
|
while true
|
|
do
|
|
sleep 101
|
|
done
|
|
exec "$@"
|