Difference between kshell and bash shell scripts Example cited


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Difference between kshell and bash shell scripts Example cited
# 1  
Old 04-08-2013
Difference between kshell and bash shell scripts Example cited

Hi All,

I need some urgent help regarding some info.

I have a cluster of servers for which I have two scripts for management.

control.sh is a bash script meant for restarting/stopping the servers.

manger.ksh is a kshell script. It is a master script to manage restarting/stoppping and deploying activities also on these servers.

Issue: I have to set the value of a variable just before restarting the servers. So when I use manager.ksh after setting the variable it wasnt setting the value of the variable, but when i used control.sh the necessary changes were looking
good.

Can anyone help me in this regard. Propmpt reply would be appreciated!

Thanks
# 2  
Old 04-08-2013
This question is like:
I do THIS and get THIS result. But, when I do THAT, I get THAT result. Why?

Seriously, do you think anyone can answer you without knowing what THIS and THAT are?

Please post the 2 scripts or their relevant portions. Also mention the way you invoke these scripts and the exact issue.
# 3  
Old 04-08-2013
i am sorry i am bit naive into this forum..


this is inside manger.ksh

Code:
function startProcess
{
	for INSTANCE in ${CONTENT}
	do
		PROC_COUNT=`ssh ${SERVER} "ps -ef | egrep -e '-c ${INSTANCE}'| grep -v grep | wc -l"`
		
		if [[ ${PROC_COUNT} -gt 0 ]]; then
			echo "${SERVER}: ${INSTANCE} process is ACTIVE. "
		else
			ssh ${SERVER} "${CONSCRIPTS}/atg_control.sh -e ${ENV} -i ${INSTANCE} -c start" > /dev/null &
			if [[ ${?} -eq 0 ]]; then
				echo "${SERVER}: Startup initiated for ${INSTANCE}. Run checkstatus to check progress."
			else
				echo "ERROR: Problems Encountered with startup of ${INSTANCE} on ${SERVER}"
				exit 1
			fi
			
			if [[ ${WAIT} -gt 0 ]]; then
				echo "Server startup in progress..."
				while [[ ${PROC_COUNT} -gt 0 ]]
				do
					sleep 10
					PROC_COUNT=`ssh ${SERVER} "ps -ef | egrep -e '-c ${INSTANCE}'| grep -v grep | wc -l"`
				done
			fi
			
		fi
	done
}

function stopProcess
{
	for INSTANCE in ${CONTENT}
	do
		PROC_COUNT=`ssh ${SERVER} "ps -ef | egrep -e '-c ${INSTANCE}'| grep -v grep | wc -l"`
		
		if [[ ${PROC_COUNT} -gt 0 ]]; then
			ssh ${SERVER} "${CONSCRIPTS}/atg_control.sh -e ${ENV} -i ${INSTANCE} -c stop" > /dev/null &
			if [[ ${?} -eq 0 ]]; then
				echo "${SERVER}: Shutdown initiated for ${INSTANCE}. Run checkstatus to check progress."
			else
				echo "ERROR: Problems Encountered with shutdown of ${INSTANCE} on ${SERVER}"
				exit 1
			fi
			
			if [[ ${WAIT} -gt 0 ]]; then
				echo "Server shutdown in progress..."
				while [[ ${PROC_COUNT} -gt 0 ]]
				do
					sleep 10
					PROC_COUNT=`ssh ${SERVER} "ps -ef | egrep -e '-c ${INSTANCE}'| grep -v grep | wc -l"`
				done
				echo "Server shutdown complete"
			fi
		else
			echo "${SERVER}: ${INSTANCE} is already down"
		fi
	done
}

function restartProcess
{
for INSTANCE in ${CONTENT}
do

  echo "${SERVER}: Restart initiated for ${INSTANCE}"
  ssh ${SERVER} "${CONSCRIPTS}/atg_control.sh -e ${ENV} -i ${INSTANCE} -c restart" > /dev/null &
  if [[ ${?} -eq 0 ]]; then
     echo "${SERVER}: Restart initiated for ${INSTANCE}. Run checkstatus to check progress."
   else
       echo "ERROR: Problems Encountered with restart of ${INSTANCE} on ${SERVER}"
   fi

done
}

function main
{
for SERVER in ${SERVLIST}
do
  case ${ACTION} in
    stop)   stopProcess ${SERVER} ${CONTENT} ${ENV};;
    start)  startProcess ${SERVER} ${CONTENT} ${ENV};;
    restart)  restartProcess ${SERVER} ${CONTENT} ${ENV};;            
    install)  installJboss ;;
    deploy)   deployjboss ;;
    *)        usage;;
 esac
done
}











=========================================================


and i have attached control.sh:

Last edited by vbe; 04-08-2013 at 10:21 AM.. Reason: code tags
# 4  
Old 04-08-2013
i invoke them by ./control.sh and passing the relevant options....and similarly for manager script also.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Understanding the difference between individual BASH login scripts

Hello... and thanks in advance for reading this or offering me any assistance I'm trying to understand specific differences between the various login scripts... I understand the differences between interactive vs non-interactive and login vs non-login shells... and that's not where my question... (4 Replies)
Discussion started by: bodisha
4 Replies

2. Homework & Coursework Questions

Bash shell scripts

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Test that exactly one command line argrument is enter from the command line. If not, display the usage... (1 Reply)
Discussion started by: jcoop12
1 Replies

3. UNIX for Dummies Questions & Answers

Repetitive scripts within a bash shell

I have a bash shell that even though it does not look pretty is working very well. Some of the steps are repetitive, something like this: muscle -in ${e}.4 > $e.5 read -t1 sed ':a /^>/!N;s/\n\(\)/\1/;ta' $e.5 > $e.6 read -t2 awk '/>/{fr=$3;getline;n=split ($0,a,""); for (i=1;i<=n;i++)... (2 Replies)
Discussion started by: Xterra
2 Replies

4. Solaris

difference in calling shell scripts

Hi I am getting some errors when i am running the shell script using the following syntax: >abc.sh but the same script works fine with the following syntax: >sh abc.sh wats the difference in both....please help thanks in advance. (6 Replies)
Discussion started by: arpit_narula
6 Replies

5. Shell Programming and Scripting

Is there any difference in bash shell in [ .. ] and [[ .. ]] ?

Could someone tell me if there is any difference in using square brackets single or doubled pair? So, do those two some how could be treted by shell differently: if ; then <statements;> else <statements;> fi and if ] ; then <statements;> else <statements;> fi Maybe any one could... (5 Replies)
Discussion started by: alex_5161
5 Replies

6. Shell Programming and Scripting

callint Kshell script from bash default shell

I am trying to set some environment variables in a shell script which is written in Kshell. I am invoking this script in .profile. The problem is envirnment variables are set within the script but after exiting the script those are gone. I don't have any problem with If I have Kshell as my default... (0 Replies)
Discussion started by: roopla
0 Replies

7. AIX

Kshell scripts and timing

Hello everyone, I have a script thats acting funky, what I would like to do is report to a file, how long its taking to get to certain area's, in seconds. For example. -- Start timer -- Run unix command 1 -- Run unix command 2 -- Stop timer -- Report Seconds -- etc etc Is there a way... (3 Replies)
Discussion started by: dbridle
3 Replies

8. AIX

Difference between writing Unix Shell script and AIX Shell Scripts

Hi, Please give me the detailed Differences between writing Unix Shell script and AIX Shell Scripts. Thanks in advance..... (0 Replies)
Discussion started by: haroonec
0 Replies

9. UNIX for Dummies Questions & Answers

Difference in Shell Scripts

Hi, Is anyone can help me to find out the difference in Shell Scripts between HP and Sun. Thanks in advance, Vijay R (3 Replies)
Discussion started by: rv_kumar
3 Replies

10. UNIX for Dummies Questions & Answers

Bash Shell Scripts

Hi all, plz can anybody tell me that if a script written for Bash shell also work for other shells and if yes , how ??? Thanks and Regards SONAL (2 Replies)
Discussion started by: sonbag_pspl
2 Replies
Login or Register to Ask a Question