Questions tagged [remote-process]
38 questions
7
votes
8 answers
Starting remote processes in a Windows network
I have several slave machines and a master machine which together run a distributed application. Processes on each slave machine have to have a GUI and network access (I think it would be called an interactive process then). For ease of use it would…

gix
- 5,737
- 5
- 34
- 40
7
votes
1 answer
Combining local processes with remote processes in Julia
I'm trying to use remote processes in conjuntion with local processes, but when I do I get the following output
julia> addprocs(["user@host"], tunnel=true, dir="~/julia-79599ada44/bin/", sshflags=`-p 6969`)
id: cannot find name for group ID…

Pedro G.
- 395
- 1
- 2
- 10
4
votes
1 answer
Asynchronous WMI Event handling in .NET
I am trying to run some processes remotely using WMI and the wait for the process to finish. Currently the event watcher is semi-synchronous using WaitForNextEvent which also has a timeout in case the something happens to the program. All this works…

Cristi M
- 446
- 4
- 13
3
votes
1 answer
Run remote process asynchronically on bash and get its remote pid, stdout+stderr in a file and exit code
I want to run a remote process asynchronically and get its remote pid, output (stdout + stderr) saved into a file or a variable (I need it for further processing) and exit code.
The remote pid is needed while the the remote process is running, not…

Ofri Rips
- 153
- 1
- 10
2
votes
3 answers
Wait for a remote process to finish in .net
We all know and love Process.WaitForExit().
Given a pid of a process on a remote machine (created by WMI/psexec), how do I wait for it to end?

ripper234
- 222,824
- 274
- 634
- 905
2
votes
2 answers
How can I kill a remote process for my app?
Our app uses this method to kill remote process; but can any other plan can be used? I need this because getRunningAppProcesses() may not work.
public void killChildProcess() {
ActivityManager actvityManager =…

user3131942
- 21
- 3
2
votes
0 answers
Call Broadcast Receiver from another process
In my application i have to use a BroadcastReceiver which must run in it's own process.

eyal
- 2,379
- 7
- 40
- 54
2
votes
1 answer
Using powershell and wmi to stop and then start a remote process
I'm working on a way to remotely stop and restart a process via PS and WMI. I can easily stop/terminate the process but I'd like to restart the process as well and I'm having issues doing that. Below is the script I use to remotely stop/terminate…

EternalStudent
- 23
- 1
- 3
2
votes
1 answer
Best method for seeing if SQL Server 2000 processes are running?
We have an old SQL Server 2000 machine where a bunch of jobs run overnight. Occasionally, after server maintenance is performed and the machine is rebooted, some SQL components don't come up with the OS (even though they are configured to do so). So…

jamauss
- 1,001
- 1
- 15
- 35
2
votes
1 answer
Is it possibile to remotely process an SSAS cube throgh script?
I have an SQL Server Analysis Service (SSAS) cube (developed with BIDS 2012) and I would like to give the opportunity to the users (that use cube through PowerPivot) to process the cube in their local machines.
I found some material on how to make a…

CiccioMiami
- 8,028
- 32
- 90
- 151
2
votes
2 answers
Create process in a Remote Desktop session?
How do I invoke a process in a specific remote desktop session so that it will start in that particular context using C#

srikanth
- 31
- 3
1
vote
2 answers
Profile Java process on AIX with VisualVM
I have connected VisualVM via JMX to an AIX server to profile my Java process. But the "Profiler" tab is missing I just get Overview, Monitor and Threads.
Have I missed any configuration? When opening a local Java process I see the "Profiler" tab.…

Kai
- 38,985
- 14
- 88
- 103
1
vote
0 answers
how to pass processed data back from slave to master using chunking
I was able to repeat example of remote chunking:
master:
@Configuration
@EnableBatchProcessing
@EnableBatchIntegration
@EnableIntegration
@PropertySource("classpath:remote-chunking.properties")
public class MasterConfiguration {
private final…

gstackoverflow
- 36,709
- 117
- 359
- 710
1
vote
1 answer
Nifi - Remote Process Group - PeerSelector
I have build a simple Process Group. It generates a FlowFile with some random stuff in it and sends it to the Nifi Remote Process Group.
This Remote Process Group is configured to send the FlowFile to localhost or in this case to my own Hostname (I…

Yonggan
- 140
- 1
- 10
1
vote
0 answers
Android 4.3: App spawns many processes on sync
On the Samsung S3 with Android 4.3, my Android app spawns new processes on every sync request using the SyncAdapter. The processes survive the "Force stop" button in the system's app settings and even an uninstall of the app. Only after a reboot,…

janfreymann
- 61
- 1
- 4