From 44851c8d90c9782818a438841914754bb7731d8d Mon Sep 17 00:00:00 2001 From: jaewon Date: Sun, 29 Apr 2018 16:29:31 +0900 Subject: [PATCH] add mysql port number cmd parameter --- lib/util/cmd.helper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/cmd.helper.js b/lib/util/cmd.helper.js index 6044ea3c51..3f44e2ef0f 100644 --- a/lib/util/cmd.helper.js +++ b/lib/util/cmd.helper.js @@ -54,7 +54,7 @@ exports.handle = program => { /**************** START : default values ****************/ program.ipAddress = program.ipAddress || 'localhost'; program.portNumber = program.portNumber || 3000; - program.port = program.port || 3000; + program.port = program.port || 3306; program.user = program.user || 'root'; program.password = program.password || ''; program.host = program.host || 'localhost';