博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux 下卸载MySQL Enterprise Monitor
阅读量:5786 次
发布时间:2019-06-18

本文共 2710 字,大约阅读时间需要 9 分钟。

    MySQL Enterprise Monitor是专门为MySQL数据库而设计的一款企业级监控,能非常好地与MySQL各方面特性相结合,包括:MySQL的关键性能指标、主机、磁盘、备份、新特性相关以及各种场景下的架构配置,并支持从单节点到海量节点部署的环境。它不仅能够全面地监控MySQL的运行状态,还能及时发现潜在的问题并给出优化建议。MySQL Enterprise Monitor的安装和卸载也属于轻量级,相当的简单易用。本文描述了MySQL Enterprise Monitor的卸载过程。
    有关MySQL Enterprise Monitor的安装请参考:
       
1、检查当前MySQL Enterprise Monitor 的配置信息
###查看当前运行的进程,并获取安装路径
# ps -ef|grep mysqld|grep monitor
###查看配置信息,当前的安装路径如下:
# cd /dbdata/mysql/enterprise/monitor
# more configuration_report.txt
MySQL Enterprise Monitor (Version 3.0.15.3058 : 3.0.15.3058)
Here are the settings you specified:
Application hostname and port: https://127.0.0.1:18443
Tomcat Ports: 18080 - 18443 (SSL)
MySQL Port : 13306
Use the following command to login to the MySQL Enterprise Monitor database:
mysql -u**** -p**** -P13306 -hlocalhost
# ls
apache-tomcat  configuration_report.txt  images  licenses  mysqlmonitorctl.sh  README_ja.txt  uninstall      version.txt
bin            etc                       java    mysql     README_en.txt       support-files  uninstall.dat

2、卸载Enterprise Monitor agent

###停止agent客户端进程
# /etc/init.d/mysql-monitor-agent stop
Shutting down MySQL Enterprise Agent service...[  OK  ]
###改变目录到agent安装位置
# cd  /opt/mysql/enterprise/agent
# ls
bin  configuration_report.txt  doc  etc  java  lib  licenses  logs  spool  uninstall  uninstall.dat
###卸载agent客户端
# ./uninstall
Do you want to uninstall MySQL Enterprise Monitor Agent and all of its modules? [Y/n]: y
----------------------------------------------------------------------------
Uninstall Status
 Uninstalling MySQL Enterprise Monitor Agent
 0% ______________ 50% ______________ 100%
 #########################################
Info: Uninstallation completed

3、卸载Enterprise Monitor

###停止Enterprise Monitor进程
# /etc/init.d/mysql-monitor-server stop
# pwd
/dbdata/mysql/enterprise/monitor
# ./uninstall
Do you want to uninstall MySQL Enterprise Monitor and all of its modules? [Y/n]: y
----------------------------------------------------------------------------
Uninstall Status
Do you also want to remove all data, logs and other files in the MySQL and Tomcat instances under
'/dbdata/mysql/enterprise/monitor'?
Caution, this will remove all user created files, even if they were present before installing MySQL Enterprise Monitor, including the data files of the bundled MySQL server. You will *not* be able to undo this action. Do not remove files if you plan to install an update.
Do you really want to remove ALL data and log files inside those directories?
 [y/N]: y
 Uninstalling MySQL Enterprise Monitor
 0% ______________ 50% ______________ 100%
 #########################################
Info: Uninstallation completed
Press [Enter] to continue :
###检查进程是否存在
# ps -ef|grep mysql-monitor
root     14572  6544  0 14:25 pts/4    00:00:00 grep mysql-monitor

转载地址:http://eetyx.baihongyu.com/

你可能感兴趣的文章
概要设计说明书
查看>>
[转载]findContours函数参数说明及相关函数
查看>>
phpexcel实现数据导出(2)
查看>>
nodejs学习笔记<六>文件处理
查看>>
微信小程序笔记<四>page.js —— 页面注册
查看>>
Docker Data Center系列(二)- UCP安装指南
查看>>
Angular企业级开发(1)-AngularJS简介
查看>>
性能测试需求指标分析方法
查看>>
shiro的helloworld
查看>>
UDP,TCP的套接字编程的Python实现
查看>>
三月心情
查看>>
java语言实现树
查看>>
java一些基础的类笔记
查看>>
第二次作业:微信案例分析
查看>>
每天一道算法题(5)——求2个字符串的最长公共子序列和最长公共子字符串
查看>>
Linux下安装使用无线网卡(系统:centos 6.5 无线网卡:TL-WN725N V2)
查看>>
spark 学习路线及参考课程
查看>>
软件质量与测试--第二周作业 WordCount
查看>>
linux常用操作
查看>>
php多进程
查看>>