Help with red5 process


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Help with red5 process
# 1  
Old 06-08-2010
Help with red5 process

Hello,
I have installed red5 on my linux server successfully at folder opt/red5.
Installation is successful and red5 is also running successfully but everytime I have to execute sh ./red5.sh start command at my server red5 directory using putty. After some time red5 process automatically stops.

Does anyone have idea what should be done in order to run red5 continuously all time without executing above start command?
I have heard that it can be done by loading some script in etc/init.d directory, is it true?

Let me know
Thanks

Regards
ninad
# 2  
Old 06-08-2010
I don't know red5 but did you read it's documentation or man page (if one exists) and checked the log file which could contain messages, why it stops running?
This User Gave Thanks to zaxxon For This Post:
# 3  
Old 06-08-2010
Thanks for quick reply...

it is installed successfully and running successfully...but I want to make it automatic process as now it is manual
# 4  
Old 06-08-2010
You can create a script in /etc/init.d that accepts the parameters start and stop. You will also need appropriate links pointing to that script for the runlevels where you want to start and stop it, appropriate in the folders /etc/rc.d, for example here the cron demon:

Starting link, S means "start":
Code:
somehost:/etc/rc.d/rc2.d> ll *cron*
lrwxrwxrwx 1 root root 14 30. Mai 2007  S89cron -> ../init.d/cron

while 89 is the order since there are many other scripts placed in there, like a priority.

For stopping see the K links:
Code:
somehost:/etc/rc.d/rc0.d> ll| grep cron
lrwxrwxrwx   1 root root    14 30. Mai 2007  K11cron -> ../init.d/cron

cron for example has entries in many different run level directories:
Code:
somehost:/etc/rc.d> ll rc[0-9].d| grep -E "rc[0-9].d|cron"
rc0.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  K11cron -> ../init.d/cron
rc1.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  K11cron -> ../init.d/cron
rc2.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  S89cron -> ../init.d/cron
rc3.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  S89cron -> ../init.d/cron
rc4.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  S89cron -> ../init.d/cron
rc5.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  S89cron -> ../init.d/cron
rc6.d:
lrwxrwxrwx   1 root root    14 30. Mai 2007  K11cron -> ../init.d/cron

You can also just make an appropriate entry in the inittab instead.

Last edited by zaxxon; 06-08-2010 at 10:29 AM..
This User Gave Thanks to zaxxon For This Post:
# 5  
Old 06-08-2010
Thanks for your help
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Command to get exact tomcat process I am running ignoring other java process

Team, I have multiple batchjobs running in VM, if I do ps -ef |grep java or tomcat I am getting multiple process list. How do I get my exact tomcat process running and that is unique? via shell script? (4 Replies)
Discussion started by: Ghanshyam Ratho
4 Replies

2. Shell Programming and Scripting

Monitoring processes in parallel and process log file after process exits

I am writing a script to kick off a process to gather logs on multiple nodes in parallel using "&". These processes create individual log files. Which I would like to filter and convert in CSV format after they are complete. I am facing following issues: 1. Monitor all Processes parallelly.... (5 Replies)
Discussion started by: shunya
5 Replies

3. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (6 Replies)
Discussion started by: naveeng
6 Replies

4. UNIX for Advanced & Expert Users

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (1 Reply)
Discussion started by: naveeng
1 Replies

5. BSD

Process remians in Running state causing other similar process to sleep and results to system hang

Hi Experts, I am facing one problem here which is one process always stuck in running state which causes the other similar process to sleep state . This causes my system in hanged state. On doing cat /proc/<pid>wchan showing the "__init_begin" in the output. Can you please help me here... (0 Replies)
Discussion started by: naveeng
0 Replies

6. UNIX for Dummies Questions & Answers

Red5 Server Installation

Hello, I Have a Problem... I have a Debian server where I would like Red5 instalation. Now I have the Red5 0.9.1 loaded on my server and want to instalation with *make* the server and it did not work. I keep getting this message here.: I have ant-ivy also already installed and all of the... (1 Reply)
Discussion started by: JungBoy1988
1 Replies

7. Shell Programming and Scripting

script to monitor the process system when a process from user takes longer than 15 min run.

get email notification from from system when a process from XXXX user takes longer than 15 min run.Let me know the time estimation for the same. hi ,any one please tell me , how to write a script to get email notification from system when a process from as mentioned above a xxxx user takes... (1 Reply)
Discussion started by: kirankrishna3
1 Replies

8. UNIX for Advanced & Expert Users

Error with ANT build for red5

I installed java at usr/local/jdk directory. My Java Version is 1.6.0_05. I have installed apache ant version 1.8.1 in folder opt/ant successfully. And later on I have installed RED 5.0.9 final version at /opt/ant directory. But I am getting error while building ant at RED5 , I got following... (1 Reply)
Discussion started by: ninadgac
1 Replies

9. Shell Programming and Scripting

Shell Script to Kill Process(number of process) Unix/Solaris

Hi Experts, we do have a shell script for Unix Solaris, which will kill all the process manullay, it used to work in my previous env, but now it is throwing this error.. could some one please help me to resolve it This is how we execute the script (and this is the requirement) ... (2 Replies)
Discussion started by: jonnyvic
2 Replies

10. Shell Programming and Scripting

script to monitor process running on server and posting a mail if any process is dead

Hello all, I would be happy if any one could help me with a shell script that would determine all the processes running on a Unix server and post a mail if any of the process is not running or aborted. Thanks in advance Regards, pradeep kulkarni. :mad: (13 Replies)
Discussion started by: pradeepmacha
13 Replies
Login or Register to Ask a Question