Hi,
I have build a custom connector to crawl the data from Wordpress Application to the elasticsearch.
The connectors works fine and I can able to see the data into the Elasticsearch Indices using Connector as ingestion method.
The problem is I cannot able to make the Custom Connector as a systemd Service in Linux Environment.
I have give same permissions, Checked the Paths of the working file and Exec Start in the System service File.
Getting Status of the service as status=203/EXEC.
Could anyone Share us the way to Make the Connector i.e make run command to execute as systemd Service.
My System service file is below
[Unit]
Description=Enterprise Search
[Service]
Group= root
User= root
WorkingDirectory= file/path/connectors/connectors-main
ExecStart= /file/path/connectors-main/bin/elastic-ingest
Restart=always
[Install]
WantedBy=multi-user.target
Is there any dependency I need to provide?
Is there any other way we can set this connector as system service?