Don't use root user as example
Using root as user is a bad habit. closes #1177
This commit is contained in:
parent
281296cd3f
commit
a59bf7246a
|
@ -25,8 +25,8 @@ This plugin gathers the statistic data from MySQL server
|
||||||
## [username[:password]@][protocol[(address)]]/[?tls=[true|false|skip-verify]]
|
## [username[:password]@][protocol[(address)]]/[?tls=[true|false|skip-verify]]
|
||||||
## see https://github.com/go-sql-driver/mysql#dsn-data-source-name
|
## see https://github.com/go-sql-driver/mysql#dsn-data-source-name
|
||||||
## e.g.
|
## e.g.
|
||||||
## root:passwd@tcp(127.0.0.1:3306)/?tls=false
|
## db_user:passwd@tcp(127.0.0.1:3306)/?tls=false
|
||||||
## root@tcp(127.0.0.1:3306)/?tls=false
|
## db_user@tcp(127.0.0.1:3306)/?tls=false
|
||||||
#
|
#
|
||||||
## If no servers are specified, then localhost is used as the host.
|
## If no servers are specified, then localhost is used as the host.
|
||||||
servers = ["tcp(127.0.0.1:3306)/"]
|
servers = ["tcp(127.0.0.1:3306)/"]
|
||||||
|
|
|
@ -39,8 +39,8 @@ var sampleConfig = `
|
||||||
## [username[:password]@][protocol[(address)]]/[?tls=[true|false|skip-verify]]
|
## [username[:password]@][protocol[(address)]]/[?tls=[true|false|skip-verify]]
|
||||||
## see https://github.com/go-sql-driver/mysql#dsn-data-source-name
|
## see https://github.com/go-sql-driver/mysql#dsn-data-source-name
|
||||||
## e.g.
|
## e.g.
|
||||||
## root:passwd@tcp(127.0.0.1:3306)/?tls=false
|
## db_user:passwd@tcp(127.0.0.1:3306)/?tls=false
|
||||||
## root@tcp(127.0.0.1:3306)/?tls=false
|
## db_user@tcp(127.0.0.1:3306)/?tls=false
|
||||||
#
|
#
|
||||||
## If no servers are specified, then localhost is used as the host.
|
## If no servers are specified, then localhost is used as the host.
|
||||||
servers = ["tcp(127.0.0.1:3306)/"]
|
servers = ["tcp(127.0.0.1:3306)/"]
|
||||||
|
|
Loading…
Reference in New Issue