mac系统自主控制深信服edr客户端

1、首先切换到root用户

sudo -i

2、给下面文件添加写权限

chmod +w /Library/sf/edr/agent/bin/eps_services_check.sh

3、注释服务退出自动重启部分脚本,大概33行到36行

#if [ $? -ne 0 ] ; then

# rm -rf $SCRIPTPATH/../config/machineid

# $SCRIPTPATH/eps_services_ctrl restart

#fi

4、执行命令

eps_services_ctrl stop # 退出edr

eps_services_ctrl start # 启动edr

eps_services_ctrl restart # 重启edr

5、添加快捷命令

先退出root用户,再编辑文件~/.bash_profile,新增一条别名

alias edr='sudo /Library/sf/edr/agent/bin/eps_services_ctrl'

执行 source ~/.bash_profile,别名生效

然后就可以愉快地 使用 edr start|stop|restart 命令啦