OnDemand User Group

Support Forums => MP Server => Topic started by: jsquizz on July 19, 2021, 08:04:05 AM

Title: quick daemon question
Post by: jsquizz on July 19, 2021, 08:04:05 AM
I have a requirement where I "Think" a daemon might be our best bet to load a bunch of files.

I am trying to fire it up, not so much working. It has actually been about 5-6 years since ive had to do this. Here's what I have.

Code: [Select]
arsload -nvf -u jeff -p jeff.stash -B IGN.APP.AG.IGN.IGN.IGN.EXT -t 60 -h archive &
The file name is-

Code: [Select]
9898541175.TESTAPP.TESTAG.IGNOREHTHIS.20210712.010447405.ARD
I go to fire it up-

Code: [Select]
[1] +  Done(6)                 arsload -nvf -u jeff -p jeff.stash -B IGN.APP.AG.IGN.IGN.IGN.EXT -t 60 -h archive &
I have a feeling this is a very simple issue. OF course, I could easily script this as well, but I want to test something for a daemon.

Title: Re: quick daemon question
Post by: Justin Derrick on July 20, 2021, 10:28:52 AM
Return code 6 is a pretty generic "abort" message.  Can you run the command in the foreground without issue?

-JD.
Title: Re: quick daemon question
Post by: jsquizz on July 20, 2021, 02:24:09 PM
Return code 6 is a pretty generic "abort" message.  Can you run the command in the foreground without issue?

-JD.

I forgot to reply. I added -c / -d and it started working.