Need help to execute the shell remotely


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Need help to execute the shell remotely
# 1  
Old 06-25-2013
Need help to execute the shell remotely

Hi All,

I have a typical problem where I have HP unix and want to connect to Solaris 5.10 box and run a shell. I tried with multiple forums but it does not help.

As per my analysis, there is no ssh in my machine and so i cant connect to solaris box,secondly ftp to the solaris server is not working.rlogin doesnt help me to go through the respective folder.
However telnet host 22 from unix box gives the below result.

Code:
mdgh0002:/opt/scripts/eee/learning/aaa=> uname -a
HP-UX mdgh0002 B.11.11 U 9000/800 143424661 unlimited-user license
mdgh0002:/opt/scripts/eee/learning/aaa=>
mdgh0002:/opt/scripts/eee/learning/aaa=> telnet 192.1XX.2XX.2XX 22
Trying...
Connected to 192.1XX.2XX.2XX.
Escape character is '^]'.
SSH-2.0-Sun_SSH_1.1.1

Protocol mismatch.
Connection closed by foreign host.
mdgh0002:/opt/scripts/eee/learning/aaa=>

Code:
mdgh0002:/opt/scripts/eee/learning/aaa=> rlogin 192.1XX.2XX.2XX -l readonly
rcmd: connect: 192.1XX.2XX.2XX: Connection refused


Can anyone help me how to execute my shell in the remote machine ? is there any other way to do this ??


I have a remote windows machine where i can use putty to connect both unix and solaris box..and ftp is also not working rfom windows to solaris..
# 2  
Old 06-25-2013
Of course if your solaris guys have ( like here...) removed telnet and refuse access by r-commands you have no other choice but to install ssh on you HP-UX...

Code:
ant:/home/vbe $ uname -r
B.11.11
ant:/home/vbe $ ssh -V
OpenSSH_4.4p1-hpn12v11, OpenSSL 0.9.7l 28 Sep 2006
HP-UX Secure Shell-A.04.40.006, HP-UX Secure Shell version

# 3  
Old 06-25-2013
You could look for these:
Code:
ant:/sm/depot $ ll open*
-rwxrwxrwx   1 vbe        bin         796648 Dec  6  2004 openssh-3.9p1-sd-11.11.depot.gz
-rwxrwxrwx   1 vbe        bin        3153050 Dec  6  2004 openssl-0.9.7e-sd-11.11.depot.gz

then get the patches accordingly... or look for more recent... Go and see at HP if you can download them...
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to execute command remotely as sudo and save the output locally?

Hello , I am trying to run a NetBackup command in remote server. Also this command can only be run by root so I am using sudo . Also I want the output of the command locally in a file. The below command asked for password , ran successfully and showed Output on my local server screen ... (2 Replies)
Discussion started by: rahul2662
2 Replies

2. Shell Programming and Scripting

[perl] execute remotely script

Hello Can some help with write part of perl script I need something like this in perl SSH="/bin/ssh -o BatchMode=yes -o" USER="test" SRV="server" SCRIPT_TO_EXEC="/tmp/test.sh" -> shell script OUT=/tmp/out.file ${SSH} -l ${USER} ${SRV} 'sudo /usr/bin/ksh -s' < ${SCRIPT_TO_EXEC} >> ${OUT}... (1 Reply)
Discussion started by: vikus
1 Replies

3. Solaris

how to execute shell script present in unix machine remotely from windows

how to execute shell script present in unix machine remotely from windows? I having a shell script in my unix machine, need to execute the script remotely from my windows machine using Visual Basic or VBA macros. Thanks In Advance. --Suresh (1 Reply)
Discussion started by: sureshmani
1 Replies

4. UNIX for Dummies Questions & Answers

Why i cannot execute remotely soffice with this new user ?

Hi, I would like to remotely execute soffice with different users on a remote machine. Basically I am connected to the machineA as user John. I would like to execute several soffice to the remote machineB. The remote machine B has different users R,S on the same group. I can launch remotely... (12 Replies)
Discussion started by: Robert2011
12 Replies

5. Shell Programming and Scripting

ssh execute command remotely

Hi all, Today I want to write a script to run the commands remotely. If I run the command as follows: ssh <user>@<ip> 'ls; pwd' it works fine. But when I want to use ssh to set view in clearcase, it will lose the response. as follows ssh <user>@<ip> 'cleartool setview <view_name>; pwd'... (1 Reply)
Discussion started by: Damon_Qu
1 Replies

6. Shell Programming and Scripting

Remotely Execute a script

Hi, What is the best way to remotely execute a script? Scenario: 1 Unix box creates a file and moves it to a 2nd unix box 2nd unix box must then move the file to a windows server How can i execute the ftp script on the 2nd server, I need to schedule the command to automate it!? I... (3 Replies)
Discussion started by: mcclunyboy
3 Replies

7. Linux

execute a program remotely using putty

hi all. I have a small program on a debian server which i need to execute remotely from a windows machine using putty. when i use putty to execute the program it starts running , but when i close the session the program stops running on the debian server as well. Can anyone guide me how... (4 Replies)
Discussion started by: coolatt
4 Replies

8. Shell Programming and Scripting

How to remotely execute a script (.COM ) on a VMS system ?

How to remotely execute a script (.COM ) on a VMS system ? rsh ? Thanks in advance (1 Reply)
Discussion started by: ivancleber
1 Replies

9. UNIX for Advanced & Expert Users

How to remotely execute a script (.COM ) on a VMS system ?

How to remotely execute a script (.COM ) on a VMS system ? rsh ? Thanks in advance (1 Reply)
Discussion started by: ivancleber
1 Replies

10. AIX

How to remotely execute a script on a VMS system ?

How to remotely execute a script on a VMS system ? rsh ? Thanks in advance (0 Replies)
Discussion started by: ivancleber
0 Replies
Login or Register to Ask a Question