找回密码
 立即注册
搜索

CentOS 系统卸载阿里云盾安骑士、云助手等云监控安全组件

759621 2024-8-13 17:57:02
本站推荐过FxxckAliyun一键脚本,卸载阿里云安骑士、云盾、云监控,作者已经很久没有更新这个脚本了。使用阿里云云服务器,阿里云自带的安全监控组件会造成服务器占用非常高,严重影响网站访问。今天分享下在 CentOS 系统下完整干净地卸载掉阿里云云盾安骑士和阿里云助手等安全监控组件的教程。
卸载阿里云助手
阿里云助手路径:/usr/local/share/aliyun-assist,执行以下命令行即可卸载:
systemctl stop aliyunsystemctl disable aliyunrm -rf /etc/systemd/system/aliyun.servicerm -rf /usr/sbin/aliyun_installerrm -rf /usr/sbin/aliyun-servicerm -rf /usr/local/share/aliyun-assistsystemctl daemon-reload
然后通过以下命令行来查看是否还有 aliyun-service 进程:
ps -ef | grep -v grep | grep -i aliyun-service
如果还有输出内容,可以通过以下命令行查看进程 ID:
ps -ef | grep -v grep | grep -i aliyun-service | awk '{print $2}'
然后通过以下命令行来结束此阿里云助手进程:
ps -ef | grep -v grep | grep -i aliyun-service | awk '{print $2}' | xargs kill -9
卸载阿里云助手的守护进程
阿里云助手守护进程的路径是:/usr/local/share/assist-daemon,执行以下命令行即可卸载:
systemctl stop AssistDaemonsystemctl disable AssistDaemonrm -rf /etc/systemd/system/AssistDaemon.servicerm -rf /usr/local/share/assist-daemonsystemctl daemon-reload
卸载阿里云盾AliYunDun
使用 chkconfig --list 命令可以在开机启动项里面看到 aegis,即阿里云盾 AliYunDun。
# chkconfig --listaegis           0ff   1ff   2n    3n    4n    5n    6ffagentwatch      0ff   1ff   2n    3:on    4:on    5:on    6:offcloudmonitor    0:off   1:off   2:on    3:on    4:on    5:on    6:offmysql           0:off   1:off   2:off   3:off   4:off   5:off   6:offnetconsole      0:off   1:off   2:off   3:off   4:off   5:off   6:offnetwork         0:off   1:off   2:on    3:on    4:on    5:on    6:off
通过输入以下命令行就可以使阿里云盾开机不启动:
service aegis stop  # 停止服务chkconfig --del aegis  # 删除服务
然后执行以下命令行来删除云盾残留:
rm -rf /usr/local/aegis
然后通过以下命令行来查看是否还有 aliyundun 进程:
ps -ef | grep -v grep | grep -i aliyundun
如果有输出内容的话,可以通过以下命令行来结束阿里云云盾进程:
ps -ef | grep -v grep | grep -i aliyundun | awk '{print $2}' | xargs kill -9

您需要登录后才可以回帖 立即登录
共收到 0 条点评
蜀ICP备2020032245号-4
微信公众号
微信小助理
返回顶部