我有一个名为 lc_adapter.exe 的程序。该程序用于将系统日志从防火墙转发到LimaCharlie.io。
我希望该程序作为服务启动。
我尝试了以下两个不同的命令。
命令 1
lc_adapter.exe -install:LCAdapterInstalled syslog client_options.identity.installation_key=a-b-c-d-e client_options.identity.oid=1-2-3-4-5 client_options.platform=text client_options.hostname=fw-paloalto-data client_options.sensor_seed_key=fw-paloalto-data port=2026 iface=0.0.0.0 is_udp=true
得出:
启动服务 LCAdapterInstalled 安装。
但它没有作为服务出现在 Windows 服务中。
命令 2
sc.exe create LCAdapterService binPath= "C:\LCAdapter\lc_adapter.exe syslog client_options.identity.installation_key=a-b-c-f-e client_options.identity.oid=1-2-3-4-5 client_options.platform=text client_options.hostname=htv-fw-data client_options.sensor_seed_key=htv-fw-data port=2099 iface=0.0.0.0 is_udp=true"
该服务出现在服务中,但它无法启动,因为它出现错误 1053。
我该做什么来调试?