473,396 Members | 2,039 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

How to remotely execute a system command on a remote shell

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 16319
sashi
1,754 Expert 1GB
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
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 Expert 512MB
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
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
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
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: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
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...

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.