一步一坑,总算能使用,问题还在解决中~~~~,目前看,6.0版本有bug,包括:无法
删除server和无法设置sftp用户名密码等等。下载了8.5,功能都正常了
MONyog是一款MySQL监控工具,可以实时监控SQL运行状态。
现在名字应该是SQL DM,,SQL DM is a MySQL monitoring tool that gives DBAs real-time insights for optimizing the performance of MySQL servers.
下面的Mysql,ssh,sftp 安装在ubuntu上。Monyog安装在window上
1。安装mysql
sudo apt-get install mysql-server mysql-client
注意:
- )修改/etc/mysql/mysql.conf.d/mysqld.cnf中的bind=0.0.0.0,
重启 /etc/init.d/mysql restart
- )授权:
Mysql –uroot -p
> grant all privileges on *.* to ‘root@%’ identified by '123456';
>flush privileges;