TalkingData / owl

Distributed monitoring system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ubuntu的部署文档

yezhoujie opened this issue · comments

请问有ubuntu 的 部署文档么?

@yezhoujie 暂时还没有,需要自己手工编译下二进制,配置方式都一样。

@yezhoujie 暂时还没有,需要自己手工编译下二进制,配置方式都一样。

script/init 里面 运行 owl-cfc.init 脚本,提示 owl-cfc.init: line 16: /etc/init.d/functions: No such file or directory
Starting :owl-cfc.init: line 65: daemon: command not found

@yezhoujie 这个管理脚本也是 CentOS 下的,ubuntu 下可以尝试使用 systemd 来管理服务。
systemd 配置类似如下,再使用 systemctl 操作服务即可

Description=owl-agent
After=network.target

[Service]
ExecStart=/usr/local/owl-client/client
Type=simple
StandardOutput=null

[Install]
WantedBy=default.target```

@yezhoujie 这个管理脚本也是 CentOS 下的,ubuntu 下可以尝试使用 systemd 来管理服务。
类似如下,再使用 systemctl 操作服务即可

Description=owl-agent
After=network.target

[Service]
ExecStart=/usr/local/owl-client/client
Type=simple
StandardOutput=null

[Install]
WantedBy=default.target```

希望尽快出一份ubuntu的部署文档,不用一键部署,一步一步来的也好

@yezhoujie 嗯,我会考虑写一个。