How to execute setDomainEnv.sh in wblogic via ssh on remote server in shell script?


 
Thread Tools Search this Thread
Top Forums UNIX for Beginners Questions & Answers How to execute setDomainEnv.sh in wblogic via ssh on remote server in shell script?
# 1  
Old 03-29-2019
How to execute setDomainEnv.sh in wblogic via ssh on remote server in shell script?

How to execute setDomainEnv.sh in wblogic via ssh on remote server in shell script

we execute setDomainEnv.sh manually as . ./setDomainEnv.sh from its location ie /opt/SP/users/domian/bin"

My approach is not working.

Please advise.

Code:
#!/bin/bash
set -x
base="/opt/SP/users/d1/bin"
COM="(. ./setDomainEnv.sh)"

for i in server1 server2 ....servern

ssh -t user1@i "cd $base";"$COM""
         done




Moderator's Comments:
Mod Comment Seriously: Please use CODE tags as required by forum rules!

Last edited by RudiC; 03-29-2019 at 05:41 AM.. Reason: Added CODE tags.
# 2  
Old 03-29-2019
WHAT is "not working"?

Moderator's Comments:
Mod Comment Posting "Does not work" without explanation does not help you or anyone. If a command does not work for you, please show the exact circumstances you used it, and the exact error or malfunction you received. Do not paraphrase errors, or post the text as links, images, or attachments if you can avoid it: Paste the exact message, in code tags, like [code] text [/code] or by selecting the text and using the Image button.

Thank you.

The UNIX and Linux Forums



Try removing the double quotes around the semicolon in the ssh command.
# 3  
Old 03-29-2019
is not working. means
This script . ./setDomainEnv.sh is not getting executed.
# 4  
Old 03-29-2019
--- wrong guess deleted ---
# 5  
Old 03-29-2019
This:

Quote:
Originally Posted by abhaydas
Code:
COM="(. ./setDomainEnv.sh)"

cannot work. I suppose setDomainEnv.sh contains some settings you want to incorporate in this (and probably other) script(s). To do so you need to execute it in this environment but the "(...)" (which means do what is inside the parentheses in a subshell is exactly the opposite of that - it will execute it in another environment (even if you remove the quotes, which perhaps make sure that the string is not executed at all).

Replace the line with
Code:
. ./setDomainEnv.sh"

and if you need the return code of the script (this might be why you tried to do it with the subshell) do it like this:

Code:
. ./setDomainEnv.sh"
COM=$?

Another point is: it is strongly discouraged to use relative pathes in a script, because what is ./.... depends on where you are at the moment of script execution. This will work from one directory but not from another. Always do it like this (absolute path) :

Code:
. /path/to/setDomainEnv.sh"
COM=$?

because the absolute path will work regardless of what your PWD is right now.

I hope this helps.

bakunin
# 6  
Old 04-05-2019
Thanks bakunin for your help.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to execute commands on remote server using expect script?

I need to copy python script file to around 100 servers using expect script. 1. Copy script to my user home first(/home/myhome) on each remote server 2. change permissions on copied file to 766. 3. sudo to appuser1 account on remote server. copy script file from my user home to /usr/bin/... (1 Reply)
Discussion started by: kchinnam
1 Replies

2. Shell Programming and Scripting

Shell script help to execute ssh remote commands

Hi, The below command is not giving me the count , Can somebody help me in re-writing this pls . Proc_Exist=`ssh -q -o "BatchMode=yes" -o "PasswordAuthentication=no" $OAUSER@${Primary_Node} ps -ef | grep -v grep | grep "${ICM_Proc}" |wc -l ` Also the same problem with below... (13 Replies)
Discussion started by: Y.balakrishna
13 Replies

3. Shell Programming and Scripting

Execute a local script against a remote server

I am unable to run the below script against a remote server due to syntax error (then unexpected), but i am able to run it locally. Am i executing it correctly or is there any other way to execute it. ssh username@servernname ksh -s < scriptname #!/bin/ksh function record { ((end =... (5 Replies)
Discussion started by: NarayanaPrakash
5 Replies

4. Shell Programming and Scripting

i want to execute shell script on remote server with in sftp session

Hi, I want to execute shell script with in sftp session for remote server. like i have a shell script test.sh that is on local server.i want to execute that script on remote server sftp user@192.168.56.10 sftp> test.sh ---execute for remote server not for local server. sftp... (3 Replies)
Discussion started by: SAUD PASHA
3 Replies

5. Shell Programming and Scripting

bash script to execute a command remote servers using ssh

Hello, I am running into few issues, please suggest me what I am missing. I am running this script on a linux host. Main idea of this script is to, login to each host via ssh and get uid of user, service user that I trying to run this script, has already deployed ssh keys and provide sudo... (8 Replies)
Discussion started by: bobby320
8 Replies

6. UNIX for Dummies Questions & Answers

ssh command to execute shell script in another server

ssh -q <hostname> /opt/tcs/satish/tst.ksh ssh -q <anotherserver> /opt/tcs/satish/tst.ksh tst.ksh has "nohup <command> & " when i execute below script , its throwing error as nohup can not be found ssh -q <anotherserver> /opt/tcs/satish/tst.ksh > log & can someone let me... (5 Replies)
Discussion started by: only4satish
5 Replies

7. Shell Programming and Scripting

Using ssh to execute a remote script in the background

Help please!! I want to use ssh to execute a remote exe and while it's running I want to query for the process ID of the exe (2 different ssh commands) 1. sshpass -p "<passwd>" ssh -f -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no root@<ipaddress> nohup /tmp/mmds_asyn & 2.... (0 Replies)
Discussion started by: rvompoluTMW
0 Replies

8. Shell Programming and Scripting

Script to connect to a remote server and execute scripts

Hello All I need a script or set of commands which can establish a remote connection with another server and execute some scripts over there. Basically it has to establish the connection with the remote server as an user ,say 'testuser' and then execute the script 'testscript'. and return the... (5 Replies)
Discussion started by: sgbhat
5 Replies

9. Shell Programming and Scripting

shell script for how to connect to a remote server by using ssh

i want to connect to a remote server through ssh. i have to also provide password within that script. after connecting to the remote server i want to do some operations like grep,cd etc can u pls help me to wite a script. Thanks (1 Reply)
Discussion started by: millan
1 Replies
Login or Register to Ask a Question