mysql
계정을 생성하고 모든 권한을 주고 싶을 때mysql> create user 'choonho'@'%' identified by 'choonho';Query OK, 0 rows affected (0.00 sec) mysql> grant all on *.* to 'choonho'@'%';Query OK, 0 rows affected (0.01 sec) mysql> flush privileges;Query OK, 0 rows affected (0.00 sec) read 권한만 주고 싶을 때create user 'telegraf'@'localhost' identified by 'telegraf_pw';GRANT SELECT, SHOW VIEW ON *.* TO 'telegraf'@'localhost'; bash에..