9 以 root 用户身份运行agent
从版本 5.0.0 版本开始,Zabbix agent 服务的启动文件 official packages 已更新为显示包含 User
及 Group
的参数. 两者都设置为 zabbix
.
这将忽略旧的Zabbix agent 指定 zabbix_agentd.conf
运行的用户 ,而是将以启动文件中指定的用户运行。
要覆盖上述行为,请创建一个包含以下内容的文件 /etc/systemd/system/zabbix-agent.service.d/override.conf
:
[Service]
User=root
Group=root
重新加载守护进程并重启 zabbix-agent 服务
systemctl daemon-reload
systemctl restart zabbix-agent
这完全决定了 Zabbix agent2 的运行用户
对于旧的agent,只会在 zabbix_agentd.conf
文件中重新启用配置用户的功能。因此,为了以 root 身份运行 zabbix agent,您仍然需要编辑 agent [配置文件](/manual/annex/config/zabbix_agentd)并指定 User=root
以及 AllowRoot=1
两个参数。