提交 f63a55b4 编写于 作者: Y Your Name

修改编译脚本

上级 cd8e4a1b
...@@ -12,7 +12,7 @@ OUTPATH="${BasePath}/out/console-${VERSION}" ...@@ -12,7 +12,7 @@ OUTPATH="${BasePath}/out/console-${VERSION}"
buildApp console $VERSION buildApp console $VERSION
mkdir ${OUTPATH}/static mkdir ${OUTPATH}/static
cp -a ${BasePath}/app/console/static/* ${OUTPATH}/static/
cp -a ${BasePath}/build/console/resources/* ${OUTPATH}/ cp -a ${BasePath}/build/console/resources/* ${OUTPATH}/
chmod +x ${OUTPATH}/install.sh ${OUTPATH}/run.sh chmod +x ${OUTPATH}/install.sh ${OUTPATH}/run.sh
......
...@@ -5,13 +5,13 @@ PRAGMA foreign_keys = false; ...@@ -5,13 +5,13 @@ PRAGMA foreign_keys = false;
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_admin"; DROP TABLE IF EXISTS "goku_admin";
CREATE TABLE "goku_admin" ( CREATE TABLE "goku_admin" (
"userID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "userID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"loginCall" text(255) NOT NULL, "loginCall" text(255) NOT NULL,
"loginPassword" text(255) NOT NULL, "loginPassword" text(255) NOT NULL,
"userType" integer(4) NOT NULL DEFAULT 0, "userType" integer(4) NOT NULL DEFAULT 0,
"groupID" integer(11) NOT NULL DEFAULT 0, "groupID" integer(11) NOT NULL DEFAULT 0,
"remark" text(255), "remark" text(255),
"permissions" text "permissions" text
); );
-- ---------------------------- -- ----------------------------
...@@ -19,18 +19,18 @@ CREATE TABLE "goku_admin" ( ...@@ -19,18 +19,18 @@ CREATE TABLE "goku_admin" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_balance"; DROP TABLE IF EXISTS "goku_balance";
CREATE TABLE "goku_balance" ( CREATE TABLE "goku_balance" (
"balanceID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "balanceID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"balanceName" text(255) NOT NULL, "balanceName" text(255) NOT NULL,
"serviceName" text(255) NOT NULL, "serviceName" text(255) NOT NULL,
"balanceConfig" text, "balanceConfig" text,
"createTime" text, "createTime" text,
"updateTime" text, "updateTime" text,
"balanceDesc" text(255), "balanceDesc" text(255),
"defaultConfig" text NOT NULL, "defaultConfig" text NOT NULL,
"clusterConfig" text NOT NULL DEFAULT '', "clusterConfig" text NOT NULL DEFAULT '',
"appName" text(255) NOT NULL DEFAULT '', "appName" text(255) NOT NULL DEFAULT '',
"static" text, "static" text,
"staticCluster" text "staticCluster" text
); );
-- ---------------------------- -- ----------------------------
...@@ -38,12 +38,12 @@ CREATE TABLE "goku_balance" ( ...@@ -38,12 +38,12 @@ CREATE TABLE "goku_balance" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_cluster"; DROP TABLE IF EXISTS "goku_cluster";
CREATE TABLE "goku_cluster" ( CREATE TABLE "goku_cluster" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" text(20) NOT NULL, "name" text(20) NOT NULL,
"title" text(50) NOT NULL, "title" text(50) NOT NULL,
"note" text(255), "note" text(255),
"db" text, "db" text,
"redis" text "redis" text
); );
-- ---------------------------- -- ----------------------------
...@@ -51,15 +51,15 @@ CREATE TABLE "goku_cluster" ( ...@@ -51,15 +51,15 @@ CREATE TABLE "goku_cluster" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_config_log"; DROP TABLE IF EXISTS "goku_config_log";
CREATE TABLE "goku_config_log" ( CREATE TABLE "goku_config_log" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" text(20) NOT NULL, "name" text(20) NOT NULL,
"enable" integer(11) NOT NULL DEFAULT 1, "enable" integer(11) NOT NULL DEFAULT 1,
"dir" text(255) NOT NULL, "dir" text(255) NOT NULL,
"file" text(255) NOT NULL, "file" text(255) NOT NULL,
"period" text(10) NOT NULL, "period" text(10) NOT NULL,
"level" text(10) NOT NULL, "level" text(10) NOT NULL,
"fields" text NOT NULL, "fields" text NOT NULL,
"expire" integer(11) NOT NULL DEFAULT 3 "expire" integer(11) NOT NULL DEFAULT 3
); );
-- ---------------------------- -- ----------------------------
...@@ -67,17 +67,17 @@ CREATE TABLE "goku_config_log" ( ...@@ -67,17 +67,17 @@ CREATE TABLE "goku_config_log" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_conn_plugin_api"; DROP TABLE IF EXISTS "goku_conn_plugin_api";
CREATE TABLE "goku_conn_plugin_api" ( CREATE TABLE "goku_conn_plugin_api" (
"connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"apiID" integer(11) NOT NULL, "apiID" integer(11) NOT NULL,
"pluginName" text(255) NOT NULL, "pluginName" text(255) NOT NULL,
"pluginConfig" text, "pluginConfig" text,
"strategyID" text(255) NOT NULL, "strategyID" text(255) NOT NULL,
"pluginInfo" text, "pluginInfo" text,
"createTime" text, "createTime" text,
"updateTime" text, "updateTime" text,
"pluginStatus" integer(4), "pluginStatus" integer(4),
"updateTag" text(32), "updateTag" text(32),
"updaterID" integer(11) NOT NULL DEFAULT 0 "updaterID" integer(11) NOT NULL DEFAULT 0
); );
-- ---------------------------- -- ----------------------------
...@@ -85,16 +85,16 @@ CREATE TABLE "goku_conn_plugin_api" ( ...@@ -85,16 +85,16 @@ CREATE TABLE "goku_conn_plugin_api" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_conn_plugin_strategy"; DROP TABLE IF EXISTS "goku_conn_plugin_strategy";
CREATE TABLE "goku_conn_plugin_strategy" ( CREATE TABLE "goku_conn_plugin_strategy" (
"connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"strategyID" text(255) NOT NULL, "strategyID" text(255) NOT NULL,
"pluginName" text(255) NOT NULL, "pluginName" text(255) NOT NULL,
"pluginConfig" text, "pluginConfig" text,
"pluginInfo" text, "pluginInfo" text,
"createTime" text, "createTime" text,
"updateTime" text, "updateTime" text,
"pluginStatus" integer(4), "pluginStatus" integer(4),
"updateTag" text(32), "updateTag" text(32),
"updaterID" integer(11) NOT NULL DEFAULT 0 "updaterID" integer(11) NOT NULL DEFAULT 0
); );
-- ---------------------------- -- ----------------------------
...@@ -102,13 +102,13 @@ CREATE TABLE "goku_conn_plugin_strategy" ( ...@@ -102,13 +102,13 @@ CREATE TABLE "goku_conn_plugin_strategy" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_conn_strategy_api"; DROP TABLE IF EXISTS "goku_conn_strategy_api";
CREATE TABLE "goku_conn_strategy_api" ( CREATE TABLE "goku_conn_strategy_api" (
"connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "connID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"strategyID" text(255) NOT NULL, "strategyID" text(255) NOT NULL,
"apiID" integer(11) NOT NULL, "apiID" integer(11) NOT NULL,
"apiMonitorStatus" integer(11) NOT NULL DEFAULT 0, "apiMonitorStatus" integer(11) NOT NULL DEFAULT 0,
"strategyMonitorStatus" integer(11) NOT NULL DEFAULT 0, "strategyMonitorStatus" integer(11) NOT NULL DEFAULT 0,
"target" text(255), "target" text(255),
"updateTime" text "updateTime" text
); );
-- ---------------------------- -- ----------------------------
...@@ -116,26 +116,26 @@ CREATE TABLE "goku_conn_strategy_api" ( ...@@ -116,26 +116,26 @@ CREATE TABLE "goku_conn_strategy_api" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway"; DROP TABLE IF EXISTS "goku_gateway";
CREATE TABLE "goku_gateway" ( CREATE TABLE "goku_gateway" (
"id" integer(11) NOT NULL, "id" integer(11) NOT NULL,
"successCode" text(255) NOT NULL, "successCode" text(255) NOT NULL,
"nodeUpdatePeriod" integer(11) NOT NULL, "nodeUpdatePeriod" integer(11) NOT NULL,
"monitorUpdatePeriod" integer(11) NOT NULL, "monitorUpdatePeriod" integer(11) NOT NULL,
"alertStatus" integer(4) NOT NULL, "alertStatus" integer(4) NOT NULL,
"alertPeriodType" integer(4) NOT NULL, "alertPeriodType" integer(4) NOT NULL,
"alertAddress" text(255), "alertAddress" text(255),
"alertLogPath" text(255), "alertLogPath" text(255),
"sender" text(255), "sender" text(255),
"senderPassword" text(255), "senderPassword" text(255),
"smtpAddress" text(255), "smtpAddress" text(255),
"smtpPort" integer(11) NOT NULL, "smtpPort" integer(11) NOT NULL,
"smtpProtocol" integer(4) NOT NULL, "smtpProtocol" integer(4) NOT NULL,
"receiverList" text(255), "receiverList" text(255),
"monitorTimeout" integer(4) NOT NULL, "monitorTimeout" integer(4) NOT NULL,
"apiAlertInfo" text, "apiAlertInfo" text,
"nodeAlertInfo" text, "nodeAlertInfo" text,
"redisAlertInfo" text, "redisAlertInfo" text,
"versionID" INTEGER NOT NULL DEFAULT 0, "versionID" INTEGER NOT NULL DEFAULT 0,
PRIMARY KEY ("id") PRIMARY KEY ("id")
); );
INSERT INTO "goku_gateway" VALUES (1, 200, 1, 30, 0, 0, NULL, NULL, NULL, NULL, NULL, 25, 0, NULL, 0, NULL, NULL, NULL, 0); INSERT INTO "goku_gateway" VALUES (1, 200, 1, 30, 0, 0, NULL, NULL, NULL, NULL, NULL, 25, 0, NULL, 0, NULL, NULL, NULL, 0);
...@@ -145,15 +145,15 @@ INSERT INTO "goku_gateway" VALUES (1, 200, 1, 30, 0, 0, NULL, NULL, NULL, NULL, ...@@ -145,15 +145,15 @@ INSERT INTO "goku_gateway" VALUES (1, 200, 1, 30, 0, 0, NULL, NULL, NULL, NULL,
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_alert"; DROP TABLE IF EXISTS "goku_gateway_alert";
CREATE TABLE "goku_gateway_alert" ( CREATE TABLE "goku_gateway_alert" (
"alertID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "alertID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"requestURL" text(255) NOT NULL, "requestURL" text(255) NOT NULL,
"targetServer" text(255) NOT NULL, "targetServer" text(255) NOT NULL,
"alertPeriodType" integer(4) NOT NULL, "alertPeriodType" integer(4) NOT NULL,
"alertCount" integer(11) NOT NULL, "alertCount" integer(11) NOT NULL,
"updateTime" text, "updateTime" text,
"targetURL" text(255) NOT NULL, "targetURL" text(255) NOT NULL,
"clusterName" text(255), "clusterName" text(255),
"nodeIP" text(255) "nodeIP" text(255)
); );
-- ---------------------------- -- ----------------------------
...@@ -161,33 +161,34 @@ CREATE TABLE "goku_gateway_alert" ( ...@@ -161,33 +161,34 @@ CREATE TABLE "goku_gateway_alert" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_api"; DROP TABLE IF EXISTS "goku_gateway_api";
CREATE TABLE "goku_gateway_api" ( CREATE TABLE "goku_gateway_api" (
"apiID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "apiID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"groupID" integer(11) NOT NULL, "groupID" integer(11) NOT NULL,
"projectID" integer(11) NOT NULL, "projectID" integer(11) NOT NULL,
"requestURL" text(255) NOT NULL, "requestURL" text(255) NOT NULL,
"apiName" text(255) NOT NULL, "apiName" text(255) NOT NULL,
"requestMethod" text(255) NOT NULL, "alias" text(255),
"targetServer" text(255), "requestMethod" text(255) NOT NULL,
"targetURL" text(255), "targetServer" text(255),
"targetMethod" text(255), "targetURL" text(255),
"isFollow" text(32) NOT NULL, "targetMethod" text(255),
"stripPrefix" text(32), "isFollow" text(32) NOT NULL,
"timeout" integer(11), "stripPrefix" text(32),
"retryCount" integer(11), "timeout" integer(11),
"createTime" text, "retryCount" integer(11),
"updateTime" text, "createTime" text,
"alertValve" integer(11) NOT NULL DEFAULT 0, "updateTime" text,
"monitorStatus" integer(11) NOT NULL DEFAULT 1, "alertValve" integer(11) NOT NULL DEFAULT 0,
"managerID" integer(11) NOT NULL, "monitorStatus" integer(11) NOT NULL DEFAULT 1,
"lastUpdateUserID" integer(11) NOT NULL, "managerID" integer(11) NOT NULL,
"createUserID" integer(11) NOT NULL, "lastUpdateUserID" integer(11) NOT NULL,
"balanceName" text(255), "createUserID" integer(11) NOT NULL,
"protocol" text(20), "balanceName" text(255),
"stripSlash" text(32), "protocol" text(20),
"apiType" integer NOT NULL DEFAULT 0, "stripSlash" text(32),
"responseDataType" text NOT NULL DEFAULT origin, "apiType" integer NOT NULL DEFAULT 0,
"linkApis" TEXT, "responseDataType" text NOT NULL DEFAULT origin,
"staticResponse" TEXT "linkApis" TEXT,
"staticResponse" TEXT
); );
-- ---------------------------- -- ----------------------------
...@@ -195,12 +196,12 @@ CREATE TABLE "goku_gateway_api" ( ...@@ -195,12 +196,12 @@ CREATE TABLE "goku_gateway_api" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_api_group"; DROP TABLE IF EXISTS "goku_gateway_api_group";
CREATE TABLE "goku_gateway_api_group" ( CREATE TABLE "goku_gateway_api_group" (
"groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"projectID" integer(11) NOT NULL, "projectID" integer(11) NOT NULL,
"groupName" text(255) NOT NULL, "groupName" text(255) NOT NULL,
"groupPath" text(255), "groupPath" text(255),
"groupDepth" text(255), "groupDepth" text(255),
"parentGroupID" integer(11) NOT NULL DEFAULT 0 "parentGroupID" integer(11) NOT NULL DEFAULT 0
); );
-- ---------------------------- -- ----------------------------
...@@ -208,9 +209,9 @@ CREATE TABLE "goku_gateway_api_group" ( ...@@ -208,9 +209,9 @@ CREATE TABLE "goku_gateway_api_group" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_permission_group"; DROP TABLE IF EXISTS "goku_gateway_permission_group";
CREATE TABLE "goku_gateway_permission_group" ( CREATE TABLE "goku_gateway_permission_group" (
"groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"groupName" text(255) NOT NULL, "groupName" text(255) NOT NULL,
"permissions" text "permissions" text
); );
-- ---------------------------- -- ----------------------------
...@@ -218,10 +219,10 @@ CREATE TABLE "goku_gateway_permission_group" ( ...@@ -218,10 +219,10 @@ CREATE TABLE "goku_gateway_permission_group" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_project"; DROP TABLE IF EXISTS "goku_gateway_project";
CREATE TABLE "goku_gateway_project" ( CREATE TABLE "goku_gateway_project" (
"projectID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "projectID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"projectName" text(255) NOT NULL, "projectName" text(255) NOT NULL,
"createTime" text, "createTime" text,
"updateTime" text "updateTime" text
); );
-- ---------------------------- -- ----------------------------
...@@ -229,16 +230,16 @@ CREATE TABLE "goku_gateway_project" ( ...@@ -229,16 +230,16 @@ CREATE TABLE "goku_gateway_project" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_strategy"; DROP TABLE IF EXISTS "goku_gateway_strategy";
CREATE TABLE "goku_gateway_strategy" ( CREATE TABLE "goku_gateway_strategy" (
"strategyID" text(32) NOT NULL, "strategyID" text(32) NOT NULL,
"strategyName" text(255) NOT NULL, "strategyName" text(255) NOT NULL,
"updateTime" text, "updateTime" text,
"createTime" text, "createTime" text,
"auth" text(255), "auth" text(255),
"groupID" integer(11) NOT NULL DEFAULT 0, "groupID" integer(11) NOT NULL DEFAULT 0,
"monitorStatus" integer(4) NOT NULL DEFAULT 0, "monitorStatus" integer(4) NOT NULL DEFAULT 0,
"enableStatus" integer(11) NOT NULL DEFAULT 0, "enableStatus" integer(11) NOT NULL DEFAULT 0,
"strategyType" integer(11) NOT NULL DEFAULT 0, "strategyType" integer(11) NOT NULL DEFAULT 0,
PRIMARY KEY ("strategyID") PRIMARY KEY ("strategyID")
); );
-- ---------------------------- -- ----------------------------
...@@ -251,9 +252,9 @@ INSERT INTO "goku_gateway_strategy" VALUES ('RGAtKBd', '开放策略', '2019-10- ...@@ -251,9 +252,9 @@ INSERT INTO "goku_gateway_strategy" VALUES ('RGAtKBd', '开放策略', '2019-10-
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_strategy_group"; DROP TABLE IF EXISTS "goku_gateway_strategy_group";
CREATE TABLE "goku_gateway_strategy_group" ( CREATE TABLE "goku_gateway_strategy_group" (
"groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"groupName" text(255) NOT NULL, "groupName" text(255) NOT NULL,
"groupType" integer(11) NOT NULL DEFAULT 0 "groupType" integer(11) NOT NULL DEFAULT 0
); );
-- ---------------------------- -- ----------------------------
...@@ -266,16 +267,16 @@ INSERT INTO "goku_gateway_strategy_group" VALUES (1, '开放分组', 1); ...@@ -266,16 +267,16 @@ INSERT INTO "goku_gateway_strategy_group" VALUES (1, '开放分组', 1);
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_gateway_version_config"; DROP TABLE IF EXISTS "goku_gateway_version_config";
CREATE TABLE "goku_gateway_version_config" ( CREATE TABLE "goku_gateway_version_config" (
"versionID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "versionID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" TEXT NOT NULL, "name" TEXT NOT NULL,
"version" TEXT, "version" TEXT,
"remark" TEXT, "remark" TEXT,
"createTime" TEXT, "createTime" TEXT,
"updateTime" TEXT, "updateTime" TEXT,
"publishTime" TEXT, "publishTime" TEXT,
"config" TEXT, "config" TEXT,
"balanceConfig" TEXT, "balanceConfig" TEXT,
"discoverConfig" TEXT "discoverConfig" TEXT
); );
-- ---------------------------- -- ----------------------------
...@@ -283,23 +284,23 @@ CREATE TABLE "goku_gateway_version_config" ( ...@@ -283,23 +284,23 @@ CREATE TABLE "goku_gateway_version_config" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_monitor_cluster"; DROP TABLE IF EXISTS "goku_monitor_cluster";
CREATE TABLE "goku_monitor_cluster" ( CREATE TABLE "goku_monitor_cluster" (
"recordID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "recordID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"strategyID" text(20) NOT NULL, "strategyID" text(20) NOT NULL,
"apiID" integer(11) NOT NULL, "apiID" integer(11) NOT NULL,
"clusterID" integer(11) NOT NULL, "clusterID" integer(11) NOT NULL,
"hour" integer(11) NOT NULL, "hour" integer(11) NOT NULL,
"gatewayRequestCount" integer(11) NOT NULL, "gatewayRequestCount" integer(11) NOT NULL,
"gatewaySuccessCount" integer(11) NOT NULL, "gatewaySuccessCount" integer(11) NOT NULL,
"gatewayStatus2xxCount" integer(11) NOT NULL, "gatewayStatus2xxCount" integer(11) NOT NULL,
"gatewayStatus4xxCount" integer(11) NOT NULL, "gatewayStatus4xxCount" integer(11) NOT NULL,
"gatewayStatus5xxCount" integer(11) NOT NULL, "gatewayStatus5xxCount" integer(11) NOT NULL,
"proxyRequestCount" integer(11) NOT NULL, "proxyRequestCount" integer(11) NOT NULL,
"proxySuccessCount" integer(11) NOT NULL, "proxySuccessCount" integer(11) NOT NULL,
"proxyStatus2xxCount" integer(11) NOT NULL, "proxyStatus2xxCount" integer(11) NOT NULL,
"proxyStatus4xxCount" integer(11) NOT NULL, "proxyStatus4xxCount" integer(11) NOT NULL,
"proxyStatus5xxCount" integer(11) NOT NULL, "proxyStatus5xxCount" integer(11) NOT NULL,
"proxyTimeoutCount" integer(11) NOT NULL, "proxyTimeoutCount" integer(11) NOT NULL,
"updateTime" text NOT NULL "updateTime" text NOT NULL
); );
-- ---------------------------- -- ----------------------------
...@@ -307,10 +308,10 @@ CREATE TABLE "goku_monitor_cluster" ( ...@@ -307,10 +308,10 @@ CREATE TABLE "goku_monitor_cluster" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_node_group"; DROP TABLE IF EXISTS "goku_node_group";
CREATE TABLE "goku_node_group" ( CREATE TABLE "goku_node_group" (
"groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "groupID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"groupName" text(255) NOT NULL, "groupName" text(255) NOT NULL,
"groupType" integer(4) NOT NULL, "groupType" integer(4) NOT NULL,
"clusterID" integer(11) NOT NULL "clusterID" integer(11) NOT NULL
); );
-- ---------------------------- -- ----------------------------
...@@ -318,23 +319,23 @@ CREATE TABLE "goku_node_group" ( ...@@ -318,23 +319,23 @@ CREATE TABLE "goku_node_group" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_node_info"; DROP TABLE IF EXISTS "goku_node_info";
CREATE TABLE "goku_node_info" ( CREATE TABLE "goku_node_info" (
"nodeID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "nodeID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"nodeIP" text(255) NOT NULL, "nodeIP" text(255) NOT NULL,
"updateStatus" integer(4) NOT NULL DEFAULT 0, "updateStatus" integer(4) NOT NULL DEFAULT 0,
"createTime" text, "createTime" text,
"updateTime" text, "updateTime" text,
"groupID" integer(11) NOT NULL DEFAULT 0, "groupID" integer(11) NOT NULL DEFAULT 0,
"nodeName" text(255) NOT NULL, "nodeName" text(255) NOT NULL,
"nodePort" text(255), "nodePort" text(255),
"nodeStatus" integer(11) NOT NULL, "nodeStatus" integer(11) NOT NULL,
"version" text(255), "version" text(255),
"sshPort" text(255) DEFAULT 22, "sshPort" text(255) DEFAULT 22,
"userName" text(255), "userName" text(255),
"password" text(255), "password" text(255),
"gatewayPath" text(255), "gatewayPath" text(255),
"key" text, "key" text,
"authMethod" integer(4) NOT NULL DEFAULT 0, "authMethod" integer(4) NOT NULL DEFAULT 0,
"clusterID" integer(11) NOT NULL DEFAULT 0 "clusterID" integer(11) NOT NULL DEFAULT 0
); );
-- ---------------------------- -- ----------------------------
...@@ -342,19 +343,19 @@ CREATE TABLE "goku_node_info" ( ...@@ -342,19 +343,19 @@ CREATE TABLE "goku_node_info" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_plugin"; DROP TABLE IF EXISTS "goku_plugin";
CREATE TABLE "goku_plugin" ( CREATE TABLE "goku_plugin" (
"pluginID" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "pluginID" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"pluginName" text(255) NOT NULL, "pluginName" text(255) NOT NULL,
"chineseName" text(255), "chineseName" text(255),
"pluginStatus" integer(4) NOT NULL, "pluginStatus" integer(4) NOT NULL,
"pluginPriority" integer(4) NOT NULL, "pluginPriority" integer(4) NOT NULL,
"pluginConfig" text, "pluginConfig" text,
"pluginInfo" text, "pluginInfo" text,
"isStop" integer(4) NOT NULL, "isStop" integer(4) NOT NULL,
"pluginType" integer(4) NOT NULL, "pluginType" integer(4) NOT NULL,
"official" text(255) NOT NULL, "official" text(255) NOT NULL,
"pluginDesc" text(255), "pluginDesc" text(255),
"version" text(255) NOT NULL, "version" text(255) NOT NULL,
"isCheck" integer(4) NOT NULL "isCheck" integer(4) NOT NULL
); );
...@@ -363,20 +364,20 @@ CREATE TABLE "goku_plugin" ( ...@@ -363,20 +364,20 @@ CREATE TABLE "goku_plugin" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_service_config"; DROP TABLE IF EXISTS "goku_service_config";
CREATE TABLE "goku_service_config" ( CREATE TABLE "goku_service_config" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" text(255) NOT NULL, "name" text(255) NOT NULL,
"default" integer(4), "default" integer(4),
"driver" text(20) NOT NULL, "driver" text(20) NOT NULL,
"desc" text NOT NULL, "desc" text NOT NULL,
"config" text NOT NULL, "config" text NOT NULL,
"clusterConfig" text NOT NULL, "clusterConfig" text NOT NULL,
"healthCheck" integer(4) NOT NULL, "healthCheck" integer(4) NOT NULL,
"healthCheckPath" text(255) NOT NULL, "healthCheckPath" text(255) NOT NULL,
"healthCheckPeriod" integer(11) NOT NULL, "healthCheckPeriod" integer(11) NOT NULL,
"healthCheckCode" text(255) NOT NULL, "healthCheckCode" text(255) NOT NULL,
"healthCheckTimeOut" integer(11) NOT NULL, "healthCheckTimeOut" integer(11) NOT NULL,
"createTime" text NOT NULL, "createTime" text NOT NULL,
"updateTime" text NOT NULL "updateTime" text NOT NULL
); );
-- ---------------------------- -- ----------------------------
...@@ -384,14 +385,14 @@ CREATE TABLE "goku_service_config" ( ...@@ -384,14 +385,14 @@ CREATE TABLE "goku_service_config" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_service_discovery"; DROP TABLE IF EXISTS "goku_service_discovery";
CREATE TABLE "goku_service_discovery" ( CREATE TABLE "goku_service_discovery" (
"id" integer NOT NULL PRIMARY KEY AUTOINCREMENT, "id" integer NOT NULL PRIMARY KEY AUTOINCREMENT,
"name" text(30), "name" text(30),
"type" text(20), "type" text(20),
"remark" text(500), "remark" text(500),
"config" text, "config" text,
"default" text(255), "default" text(255),
"createTime" text, "createTime" text,
"updateTime" text "updateTime" text
); );
-- ---------------------------- -- ----------------------------
...@@ -399,9 +400,9 @@ CREATE TABLE "goku_service_discovery" ( ...@@ -399,9 +400,9 @@ CREATE TABLE "goku_service_discovery" (
-- ---------------------------- -- ----------------------------
DROP TABLE IF EXISTS "goku_table_update_record"; DROP TABLE IF EXISTS "goku_table_update_record";
CREATE TABLE "goku_table_update_record" ( CREATE TABLE "goku_table_update_record" (
"name" text(64) NOT NULL, "name" text(64) NOT NULL,
"updateTime" text NOT NULL, "updateTime" text NOT NULL,
"tableID" integer NOT NULL PRIMARY KEY AUTOINCREMENT "tableID" integer NOT NULL PRIMARY KEY AUTOINCREMENT
); );
...@@ -427,17 +428,17 @@ UPDATE "sqlite_sequence" SET seq = 1 WHERE name = 'goku_admin'; ...@@ -427,17 +428,17 @@ UPDATE "sqlite_sequence" SET seq = 1 WHERE name = 'goku_admin';
-- Indexes structure for table goku_balance -- Indexes structure for table goku_balance
-- ---------------------------- -- ----------------------------
CREATE INDEX "balanceName" CREATE INDEX "balanceName"
ON "goku_balance" ( ON "goku_balance" (
"balanceName" ASC "balanceName" ASC
); );
-- ---------------------------- -- ----------------------------
-- Indexes structure for table goku_cluster -- Indexes structure for table goku_cluster
-- ---------------------------- -- ----------------------------
CREATE INDEX "name" CREATE INDEX "name"
ON "goku_cluster" ( ON "goku_cluster" (
"name" ASC "name" ASC
); );
-- ---------------------------- -- ----------------------------
-- Auto increment value for goku_config_log -- Auto increment value for goku_config_log
......
...@@ -26,34 +26,32 @@ start() { ...@@ -26,34 +26,32 @@ start() {
ADMIN=$1 ADMIN=$1
INSTANCE=$2 INSTANCE=$2
CONFIG_PATH=$WORK_PATH/goku-node.json
if [[ "INSTANCE" = "" ]] ;then RUN_MODEL="console"
PORT=${ENV_INSTANCE} if [ -f "$CONFIG_PATH" ]; then
RUN_MODEL="config"
fi fi
if [[ "$ADMIN" = "" ]] ; then if [[ "$ADMIN" = "" ]] ; then
ADMIN=${ENV_ADMIN} ADMIN=${ENV_ADMIN}
fi fi
if [[ "$INSTANCE" = "" ]]; then
INSTANCE = ${ENV_INSTANCE}
fi
if [[ "$ADMIN" = "" ]] ; then if [[ "$ADMIN" == "" && "$RUN_MODEL" == "console" ]] ; then
echo "start fail :need admin url" echo "start fail :need admin url"
exit 1 exit 1
fi fi
mkdir -p $WORK_PATH/logs mkdir -p $WORK_PATH/logs
echo -e "ENV_PORT=$PORT\nENV_ADMIN=$ADMIN" > $WORK_PATH/$PROG.env echo -e "ENV_PORT=$PORT\nENV_ADMIN=$ADMIN" > $WORK_PATH/$PROG.env
if [[ -e "$WORK_PATH/$PROG.pid" ]]; then if [[ "$ADMIN" != "NULL" ]]; then
## Program is running, exit with error. $PROG_PATH/$PROG --admin=$ADMIN --instance=$INSTANCE
echo "Error! $PROG is currently running!" 1>&2 else
exit 1 $PROG_PATH/$PROG --config=$CONFIG_PATH
else
time=$(date "+%Y%m%d-%H%M%S")
## Change from /dev/null to something like /var/log/$PROG if you want to save output.
nohup $PROG_PATH/$PROG --instance=$INSTANCE --admin=$ADMIN 2>&1 >"$WORK_PATH/logs/stdout-$PROG-$time.log" & pid=$!
echo "$PROG started"
echo $pid > "$WORK_PATH/$PROG.pid"
fi fi
} }
...@@ -104,3 +102,4 @@ case "$1" in ...@@ -104,3 +102,4 @@ case "$1" in
exit 1 exit 1
;; ;;
esac esac
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册