473,472 Members | 2,137 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to remotely execute a system command on a remote shell

6 New Member
Hi
I am trying to execute a system command in my "C" code running on a Ubuntu Linux machine. The code is supposed to open a secure shell connection to another machine, change directories to a given directory and run an executable on that machine. I have configured the remote machine through ssh keygen to be able to authenticate my account and bypass the password. here is my "C" code:


void create_server(char *servermcnm)
{
char command1[100] = "ssh -X ";
strcat(command1,servermcnm);
strcat(command1," &");
char command2[100] = "cd ~/P1/P1*";
system(command1);
system(command2);
system("./server &");
}

In the above code, servermcnm is the name of the remote machine. The system(command1) call works, because I am able to reach a terminal session on the other machine, but I want the system(command2) line and system("./server &) to execute on the remote machine, but it doesn't work.
Dec 21 '06 #1
6 16321
sashi
1,754 Recognized Expert Top Contributor
Hi
I am trying to execute a system command in my "C" code running on a Ubuntu Linux machine. The code is supposed to open a secure shell connection to another machine, change directories to a given directory and run an executable on that machine. I have configured the remote machine through ssh keygen to be able to authenticate my account and bypass the password. here is my "C" code:


void create_server(char *servermcnm)
{
char command1[100] = "ssh -X ";
strcat(command1,servermcnm);
strcat(command1," &");
char command2[100] = "cd ~/P1/P1*";
system(command1);
system(command2);
system("./server &");
}

In the above code, servermcnm is the name of the remote machine. The system(command1) call works, because I am able to reach a terminal session on the other machine, but I want the system(command2) line and system("./server &) to execute on the remote machine, but it doesn't work.
Hi there,

Have you assigned execute permission to the script? Please check this detail. Good luck & Take care.
Dec 21 '06 #2
pvadhi07
6 New Member
I have assigned execute permission to the script. The problem is that because I am actually trying to run an executable with my C program embedded code, I am able to run the first command ("namely ssh -X servermcnm"), from my program, but then the subsequent commands to change directory and run the executable aren't running for some reason. The error I receive is something like "can't open a pseudo-terminal session because stdin is not blah blah blah".

Once I reach the other machine by executing the ssh command in my code, the next line in my code needs to be executed on the remote machine's shell, but for whatever reason it fails. I am not sure if this is a configuration related issue or something else. Here's the code:

void create_server(char *servermcnm)
{
char command1[100] = "ssh -X ";
strcat(command1,servermcnm);
strcat(command1," &");
char command2[100] = "cd ~/P1/P1*";
system(command1);
system(command2);
system("./server &");
}
Dec 21 '06 #3
michaelb
534 Recognized Expert Contributor
This may not be the whole story, but I think there's at least one problem with your code:

You make one "system" call to change directory.
Then you call system again to do something else.
Are your making an assumption that you're still in that directory?

try this (pseudocode)
Expand|Select|Wrap|Line Numbers
  1. system ("cd /home/users/me/subdir/");
  2. system("touch ABCDEF");
  3.  
I expect file ABCDEF will be created wherever you execute your program, not necesarily in /home/users/me/subdir/

What happens if you chain all your commands with ";" and call system just once?
Dec 21 '06 #4
pvadhi07
6 New Member
I tried the suggestion made on the previous reply about chaining commands together with ";" and making one system call, but I receive a run time error stating that ";" wasn't recognized.

I am not sure how to get around this problem, but I need to run my "server" program in machine b from calling it with C language code in machine A. I know I need to ssh into machine b, but I don't know how to run the server program in machine b with my C language code right after "ssh"ing into the machine b. Any suggestions about "C" code utilizing solutions would be greatly appreciated. Please help.
Dec 22 '06 #5
pvadhi07
6 New Member
I was able to run the executable by calling system(command) where command was "ssh -X servername /home/dir1/dir2/executable &". Thanks for michaelb and sashi for attempting to help me.
Dec 22 '06 #6
austin1
1 New Member
Hi
I am trying to execute a system command in my "C" code running on a Ubuntu Linux machine. The code is supposed to open a secure shell connection to another machine, change directories to a given directory and run an executable on that machine. I have configured the remote machine through ssh keygen to be able to authenticate my account and bypass the password. here is my "C" code:


void create_server(char *servermcnm)
{
char command1[100] = "ssh -X ";
strcat(command1,servermcnm);
strcat(command1," &");
char command2[100] = "cd ~/P1/P1*";
system(command1);
system(command2);
system("./server &");
}

In the above code, servermcnm is the name of the remote machine. The system(command1) call works, because I am able to reach a terminal session on the other machine, but I want the system(command2) line and system("./server &) to execute on the remote machine, but it doesn't work.
------------------------------------------
Hi Pvadi,
I am trying to do the same as you are asking here. Meaning execute remote shell , I have been looking and successfully generate the public / private key using ssh-gen , but I do not know how to bypass the password , so it will not prompt me the password.
You had mentioned here that you know how to set up to make it bypass prompting the password. Would you shed some lights for me ?
Thanks a lot,
Austin1
Mar 1 '07 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: Tom | last post by:
Is it possible to create a button that will gzip a file from a web page ?? The have the page display another button, when the gzip is complete ?? The button should allow us to issues a system...
4
by: NewYorker | last post by:
Hi, I'm looking for code to do the following. Bascially, "System" shell out and execute the command and return the stdout in result. You know a link OR know the trick, please let me know. ...
3
by: Mark Bergman | last post by:
We have inherited a script which runs rsh (remote shell), taking parameters from a variable, and if attempting to run a multi-word command remotely, we get an error! See the example below which...
2
by: Ken Allen | last post by:
I have a service that was developed in C# that I wish to debug. The project resides on my desktop system and I wish it to execute on a remote test system (actually on the next desk). When I...
8
by: Stephen Long | last post by:
I'm looking for information on how i can open a remote command shell <cmd.exe> on a remote pc and perform basic DOS/Shell commands .. TIA Steve
11
by: jobs239 | last post by:
Can I use this line inside C program "system(java -jar <jarfilename>)" to run a java program from C? Or do I have to use some JNI interface.?
3
by: pavi | last post by:
Hi, I am using system command to execute a shell script in a C program. Usage system("sh file"). There are situations where the file may be empty. But execution gets hung if the file is empty....
9
by: skyy | last post by:
Hi i am trying to use the system() command to run some linux command using perl script... Eg.. Deleting files. system("rm $filename"); However, when my $filename contain " character, the...
1
by: smy | last post by:
hi, I have a perl-cgi script in which i have to run a exe file.For this i have used a system command.but it's not working.. The same program with the same parameters is running from command line as...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.