mirror of https://gitee.com/godoos/godoos.git
12 changed files with 141 additions and 36 deletions
@ -0,0 +1,13 @@ |
|||
{ |
|||
"name": "mysql8.0", |
|||
"url": "https://dev.mysql.com/get/Downloads/MySQL-8.0/mysql-8.0.39-winx64.zip", |
|||
"isDev": true, |
|||
"needDownload": true, |
|||
"needInstall": true, |
|||
"version": "8.0.39", |
|||
"icon": "https://img0.baidu.com/it/u=1087008535,3349487719&fm=253&fmt=auto&app=138&f=PNG?w=969&h=500", |
|||
"checkProgress": true, |
|||
"hasRestart": true, |
|||
"setting": true, |
|||
"isOn": true |
|||
} |
@ -0,0 +1,29 @@ |
|||
[client] |
|||
port = 3306 |
|||
|
|||
[mysql] |
|||
no-auto-rehash |
|||
default-character-set = utf8mb4 |
|||
|
|||
[mysqld] |
|||
basedir = "{exePath}" |
|||
datadir = "{dataDir}" |
|||
port = {port} |
|||
server_id = 1 |
|||
character-set-server = utf8mb4 |
|||
|
|||
default_authentication_plugin = mysql_native_password |
|||
|
|||
explicit_defaults_for_timestamp = on |
|||
tls-version = '' |
|||
skip-mysqlx |
|||
|
|||
table_open_cache = 256 |
|||
|
|||
log_timestamps = SYSTEM |
|||
|
|||
log-error = "{logDir}/mysql.log" |
|||
|
|||
[mysqldump] |
|||
quick |
|||
max_allowed_packet = 512M |
@ -0,0 +1,12 @@ |
|||
{ |
|||
"name": "redis5.0", |
|||
"icon": "redis.png", |
|||
"setting": { |
|||
"binPath": "{exePath}/redis-server.exe" |
|||
}, |
|||
"start": { |
|||
"startCmds": [ |
|||
"{exePath}/redis.windows.conf" |
|||
] |
|||
} |
|||
} |
@ -1,8 +0,0 @@ |
|||
package store |
|||
|
|||
type ProcessInfo struct { |
|||
Port string |
|||
PingPath string // 增加ping或健康检查路径
|
|||
} |
|||
|
|||
var ProcessInfoMap = map[string]ProcessInfo{} |
Loading…
Reference in new issue