尝试使用 systemd 将 PhantomJS (webdriver) 作为服务运行

尝试使用 systemd 将 PhantomJS (webdriver) 作为服务运行

我想在 CentOS 机器上以 webdriver 模式运行 PhantomJS 作为服务。

我创建了这个 systemd 文件,但不知何故命令行参数不被接受。错误消息是Unit phantomjs-webdriver.service failed to load: Invalid argument.

[Unit]
Description=PhantomJS Webdriver
After=syslog.target

[Service]
User=xxxxx
ExecStart=phantomjs --webdriver=4444
SuccessExitStatus=143

[Install]
WantedBy=multi-user.target

是否有可能在中使用命令行开关ExecStart

答案1

是的,单元文件中允许使用命令行开关ExecStart。例如:

$ grep ExecStart /usr/lib/systemd/system/sshd.service 
ExecStart=/usr/bin/sshd -D

您的单位无效,因为第一个ExecStart=参数必须是可执行文件的完整路径(参考)你可以用which phantomjs命令找到它。

相关内容