This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Re: Register Service for LINUX Environment using installAnywhere?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 21, 2013
02:43 PM
Register Service for LINUX Environment using installAnywhere?
Hi,
Can we register Service/Process for LINUX using InstallAnywhere .
I can able to do to register windows service using Addaction of "Register Window Service"
Are there any way to Register Service/Process the same way that we do for Windows?
Any ideas thoughts?
Regards,
MK
Can we register Service/Process for LINUX using InstallAnywhere .
I can able to do to register windows service using Addaction of "Register Window Service"
Are there any way to Register Service/Process the same way that we do for Windows?
Any ideas thoughts?
Regards,
MK
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 23, 2013
04:33 AM
Mohasin wrote:
Hi,
Can we register Service/Process for LINUX using InstallAnywhere .
I can able to do to register windows service using Addaction of "Register Window Service"
Are there any way to Register Service/Process the same way that we do for Windows?
Any ideas thoughts?
Regards,
MK
you can create a softlink of youe shell file in the /etc/init.d .
e.g ln -s /opt/yourfile.sh /etc/init.d/yourfile
Now you can start and stop your service from anywhere by simply executing "service start yourfile" or "service stop yourfile"
You need to have start and stop as the parameters supported by your shell script
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Oct 23, 2013
01:16 PM
anilsharma wrote:
you can create a softlink of youe shell file in the /etc/init.d .
e.g ln -s /opt/yourfile.sh /etc/init.d/yourfile
Now you can start and stop your service from anywhere by simply executing "service start yourfile" or "service stop yourfile"
You need to have start and stop as the parameters supported by your shell script
Thank you very much Anil .Helps me.