Passing Input parameters to the Daemon Process
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I have a shell script which reads input from Terminal. I would like to run this script as a daemon process. I have read and understood about making a script to a daemon process where we would create a .service
file etc.
Now I would like to read inputs for daemon process as its being read for shell script. I have read that we can configure the config
files in /etc/systemd/
and I have also read about creating a pipe like mentioned in Sending input to background process. But I am getting confused and not able to get the whole picture of whether it is possible
Can anybody please explain ?
Thanks.
shell systemd daemon input
add a comment |Â
up vote
0
down vote
favorite
I have a shell script which reads input from Terminal. I would like to run this script as a daemon process. I have read and understood about making a script to a daemon process where we would create a .service
file etc.
Now I would like to read inputs for daemon process as its being read for shell script. I have read that we can configure the config
files in /etc/systemd/
and I have also read about creating a pipe like mentioned in Sending input to background process. But I am getting confused and not able to get the whole picture of whether it is possible
Can anybody please explain ?
Thanks.
shell systemd daemon input
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a shell script which reads input from Terminal. I would like to run this script as a daemon process. I have read and understood about making a script to a daemon process where we would create a .service
file etc.
Now I would like to read inputs for daemon process as its being read for shell script. I have read that we can configure the config
files in /etc/systemd/
and I have also read about creating a pipe like mentioned in Sending input to background process. But I am getting confused and not able to get the whole picture of whether it is possible
Can anybody please explain ?
Thanks.
shell systemd daemon input
I have a shell script which reads input from Terminal. I would like to run this script as a daemon process. I have read and understood about making a script to a daemon process where we would create a .service
file etc.
Now I would like to read inputs for daemon process as its being read for shell script. I have read that we can configure the config
files in /etc/systemd/
and I have also read about creating a pipe like mentioned in Sending input to background process. But I am getting confused and not able to get the whole picture of whether it is possible
Can anybody please explain ?
Thanks.
shell systemd daemon input
shell systemd daemon input
edited 23 mins ago
Filipe Brandenburger
5,1301624
5,1301624
asked 29 mins ago
karra
12
12
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago
add a comment |Â
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago
add a comment |Â
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f480704%2fpassing-input-parameters-to-the-daemon-process%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
The whole point of a daemon is to run in background, so taking input from a user (say, from a terminal) is contrary to what a daemon is... It's not really clear what you're trying to achieve here. Can you edit your question to explain in more details what kind of input you'd like to send to your daemon, or perhaps give an example to illustrate it?
â Filipe Brandenburger
21 mins ago
If you want to have a parameterized service, maybe service templates are what you're looking for?
â Filipe Brandenburger
19 mins ago