Kishan G
Kishan G

Reputation: 1

Spring XD - Singlenode as a Service

I want to start Spring XD singlenode and leave it running. So that I can submit jobs to it using scheduler or invoke the shell anytime I want to run my modules/jobs.

How can I register Spring XD Singlenode as a Service in Linux/RHEL?

I tried starting Spring XD using 'nohup' but the nohup.out is eating the disk space.

Basically I want it to run in background like a demon / start up service.

Please advise.

Thank you. Regards, Kishan. G

Upvotes: 0

Views: 186

Answers (1)

Ashish C
Ashish C

Reputation: 77

Try putting the process in background with :

nohup command >/dev/null 2>&1 &

This will not create nohup.out

Upvotes: 1

Related Questions