Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
10answers
87k views

how to use ssh to run shell script on a remote machine? [closed]

could you please suggest me how to run a shell script on remote machine? I have ssh configured on both machine A and B. My script is on machine A which will perform a task on machine B. Awaiting ...
6
votes
5answers
261 views

How do I copy a python function to a remote machine and then execute it?

I'm trying to create a construct in Python 3 that will allow me to easily execute a function on a remote machine. Assuming I've already got a python tcp server that will run the functions it receives, ...
3
votes
2answers
251 views

Distributed Application in Android

I am trying to partition an android application in order to execute it partially in on the phone, and partially on the server (the server could have an emulator run in it). I have read that RMIs are ...
3
votes
6answers
4k views

Execute python code inside browser without Jython

Is there a way to execute python code in a browser, other than using Jython and an applet? The execution does not have to deal with anything related to graphics. For example, just sum all the digits ...
3
votes
2answers
970 views

How do you execute a command on a remote system insde a BASH script?

As part of an intricate BASH script, I'd like to execute a command on a remote system from within the script itself. Right now, I run the script which tailors files for the remote system and uploads ...
3
votes
5answers
606 views

LSL communications

Years ago I created a programming collaboratory in Diversity University MOO -- a room written in MOOcode that used TCP/IP to communicate with a perl server back at my campus to compile and execute C, ...
1
vote
5answers
117 views

Remote execution of command

I want to remotely execute commands on a machine from a host machine executing say a C#/C++/C type of application. The application is intended to control and execute the execution of commands on the ...
1
vote
3answers
2k views

SSH Command Execution Hangs, although interactive shell functions fine

When I attempt to execute a command on a remote server with ssh, the ssh command hangs after the exec request accepted debug message, and eventually times out. The failing command: ssh -v -v ...
1
vote
0answers
176 views

Does CVE : 2010-1119 (Webkit Use After Free Vulnerability) Still Work on Android Emulator Platform 2.1-update1?

Hi I'm trying to learn about CVE : 2010-1119 posted here : http://www.exploit-db.com/exploits/16974/ I edited the IP hex to reflect my netcat server listening on port 2222, but when I visit the ...
1
vote
1answer
114 views

Obtaining status from a remote executed process

I am invoking a remote process using libcURLs libssh2. The remote server is a Linux (CentOS) and the client is an Windows XP. Also am using Qt 4.6 and C++.The processes are some third party ...
1
vote
1answer
175 views

how to check if scheduler backups ran successfully

on each of our remote servers a scheduler task is created that calls an .exe program that shuts down the databases at 10:00:00 everyday (it create database backups)and start it up again at a specific ...
0
votes
1answer
150 views

Use SSIS to launch powershell script that remotely launches a batch file without Administrator rights

We have a SQL server (Name: SQL) that launches an SSIS job with proxy credentials (a service account), consisting of multiple steps. One of these steps require files to be put in a local folder on ...
0
votes
2answers
956 views

windows batch file to call remote executable with username and password

Hi I am trying to get a batch file to call an executable from the server and login. I have a monitoring program that allows me send and execute the script. OK here goes.... ...
0
votes
2answers
673 views

Remote java program execution using ftp, very large dataset on remote machine - program to data vs data to program

I am developing a java based application; its pertinent requirements are listed below Large datasets exist on several machines on network. my program needs to (remotely) execute a java program to ...
0
votes
2answers
503 views

Run a remote python script from ASP.Net

I have a python script on a linux server that I can SSH into and I want to run the script on the linux server( and pass it parameters entered by the user) and get the output on an ASP.net webpage ...
0
votes
3answers
8k views

How can I use VB.NET to execute a batch file on another computer?

In vb.net 2008 I want to execute a batch file that resides on another computer. There is no error, but nothing happens. Here is the code: Dim pStart As New System.Diagnostics.Process Dim startInfo ...