The child-process tag has no wiki summary.
0
votes
1answer
19 views
Why would calling a child_process command work with exec but not spawn?
Why would this work:
var exec = require("child_process").exec;
var command = exec("grunt");
But this throws an error:
var spawn = require("child_process").spawn;
var command = spawn("grunt");
...
0
votes
0answers
29 views
Node.JS Spawn inside an SELinux Sandbox
I am building a Node.JS application that involves redirecting user input into a server-side command. Of course, that could be catastrophic to security, so I desire to run the child command inside an ...
1
vote
0answers
18 views
Can Android kill a child process without killing the parent process?
I use ProcessBuilder to start a native executable. This process will run for a very long time, and can use a lot of memory. I use Process.getInputStream() and getOutputStream() to communicate with it.
...
0
votes
1answer
50 views
How to make my nodejs app serve multiple users?
I am implementing a very basic website using nodejs, and expressjs framework. The idea is that the user enters the website, click on a button that will trigger a cpu-intensive task in the server, and ...
0
votes
1answer
35 views
Node.js Fibers and code scheduled with setTimeout leads to crash
I am using Fibers to solve a problem regarding how to yield control to the event loop in node.js, pausing the execution of some synchronous code. This works well, mostly, but I encountered a strange ...
0
votes
1answer
28 views
One child process per for loop in make?
Let me first write a quick Makefile as a showcase:
#!/bin/make -f
folders := $(shell find -mindepth 1 -maxdepth 1 -type d -print)
make_dir:
@mkdir -p "test0"
pwd_test:
@cd "test0" ...
1
vote
0answers
82 views
How do I manually flush a pipe to a child process in node.js?
I am trying to run the a script on node.js which sequentially sends numbers to an executable a.out, which squares it and writes the result on its stdout. When that happens, the next number will be ...
1
vote
0answers
38 views
How do I spawn a child process as a different user on Windows?
Since libuv does not support child_process.spawn's uid option on Windows, how can you spawn a child process that runs as a different user?
0
votes
1answer
90 views
How to SSH into a server from a node.js application?
var exec = require('child_process').exec;
exec('ssh my_ip',function(err,stdout,stderr){
console.log(err,stdout,stderr);
});
This just freezes - I guess, because ssh my_ip asks for password, is ...
0
votes
0answers
36 views
Failing to execute wget under node.js
I need to use wget under node.js.
To use it, I am trying to use child_process.exec function. Here's my node.js server code:
var exec = require( 'child_process' ).exec;
...
function fff() {
...
0
votes
2answers
28 views
How can i pass argument to child_process.exec callback
is there a way to pass extra arguments to the callback function when i use
child_process.exec(cmd,callback) ?
According to the documentation, the callback function only receive error,stdout,sterr.
I ...
0
votes
1answer
56 views
Node - Prevent child process from going in to parent directory
I am spawning a process from my node server, that is in /tmp/running/username (it is a node process uploaded by the user)
how do I prevent it from reading (or knowing of the existence of) anything ...
1
vote
1answer
61 views
Pipe processing to extract tar buffer in Node.js Child Processes
I would like to do this by Node.js:
git archive remote=git@example.com:repo.git HEAD | tar -x - -C /path/to/extracted/
So, I wrote codes something like this:
git = spawn 'git', ['archive', ...
2
votes
1answer
32 views
How can I get top command output in real time in Mac Os
I want to monitor server and show top command output in real time on webpage.
there is an error error: initializing curses after program started on Mac OS.
I don't know how to deal with it, my ...
1
vote
2answers
113 views
Measure CPU and RAM Usage of Child Process
I have the following process:
public void Run()
{
ProcessStartInfo serverPInfo = new ProcessStartInfo("javaw", "-jar -Xms1024M -Xmx1024M \"C:\\Users\\David\\Documents\\Visual ...
0
votes
1answer
67 views
synchronously run a process in nodejs
I tried to hit 2 web-services and got their response. The web-services should be hit in parallel instead Node.js does that asynchronously. The childprocess.spawn also behaves asynchronously. Any idea ...
1
vote
0answers
312 views
Node.js spawn child process best practice
I need to spawn a mocha process. It can be installed either locally, or globally, I don't know in advance.
This works only if mocha is installed globally:
require("child_process").spawn("mocha", ...
0
votes
0answers
84 views
Cannot close/terminate child process in Netbeans
ANSWER in this previous question:
http://stackoverflow.com/a/2035683/960086
It was not checked and quiet down, so I missed it. Already asked to be posted here
I am playing around with an application ...
1
vote
1answer
322 views
Display running child process' output in nodejs (windows)
For example sake, I'm running the most basic webServer in node (I'm using windows) with the following code (named server.js):
var http = require('http');
http.createServer(function (req, ...
0
votes
2answers
82 views
How Secure is using execFile for Bash Scripts?
I have a node.js app which is using the child_process.execFile command to run a command-line utility.
I'm worried that it would be possible for a user to run commands locally (a rm / -rf horror ...
0
votes
2answers
260 views
Run child processes on cloud foundry node.js
Has anyone tried to run child processes on Cloud Foundry's node.js?
I have below code running fine locally:
var port = (process.env.VMC_APP_PORT || 3000),
host = (process.env.VCAP_APP_HOST || ...
0
votes
0answers
54 views
/bin/su in node.js
When I run
su = spawn '/bin/echo', ['user']
su.stdout.on 'data', (data) ->
console.log data.toString()
it will correctly write user on console. But When I run
su = spawn '/bin/su', ['user']
...
0
votes
1answer
225 views
Node.js Web-based SSH
Is there a way to launch process (bash) from node.js under specific user when knowing linux username and password of this user.
I want to transfer terminal from server over socket.io to web browser ...
2
votes
0answers
62 views
Do spawned child processes count as user time?
I have a Java process that starts a bunch of child processes and interleaves them by executing to "kill -STOP" and "kill -CONT" (following the suggestion given in Suspend a child process spawned by ...
1
vote
1answer
197 views
How to create child process to execute a method in c#?
I have got an logical bug from winpcap library in reading file from offline dump file. In that they are not closing the file after reading. So i am getting an exception that "failed to open the ...
1
vote
1answer
140 views
how do I make node child_process exec continuously
How to exec continuously? e.g. ls after cd?
I tried
exec = require('child_process').exec;
exec('cd ~/',
function(){
exec('ls'),
function(err, stdout, stderr){
console.log(stdout); ...
0
votes
1answer
65 views
Why is else block executed for child process?
Here's a program with fork and waitpid.
#!/usr/bin/perl
use strict;
use warnings;
my ($childProcessID, $i);
print "I AM THE ONLY PROCESS.\n";
$childProcessID = fork ();
if ($childProcessID){
...
0
votes
1answer
206 views
nodejs exec command failing with no useful error message
This is the code to execute
cp.exec("cc -Wall /tmp/test.c -o /tmp/test", function(e, stdout, stderr) {
if (e) {
var errorstr = "Compilation failed with the following error"+ ...
1
vote
2answers
115 views
Suspend a child process spawned by java
I have a java program which uses Runtime.exec() to spawn a child process, but I need to be able to programatically suspend it and then start it running again from where it left off. The Java Process ...
0
votes
1answer
83 views
Send Arrow key input to child process in java
I want to run a child process in my java program to create automation.
I do not have the source code of the child process.
There are some functionality requires pressing the arrow keys in the child ...
3
votes
1answer
632 views
nodejs grunt child process callback function example
Would you kindly help with the following example of a node exec command run with grunt?
The echo command is executing, and hello-world.txt is created, but the grunt.log.writeln commands in the ...
0
votes
3answers
87 views
Explain this code's working; how the child process returns values and where?
I don't get how the value is returned by a child process and to whom?
Output is 6, 7 ;
question source: http://www.cs.utexas.edu/~mwalfish/classes/s11-cs372h/hw/sol1.html
Program 1:
main()
{
...
0
votes
1answer
422 views
Killing a child process from within itself in Node.JS
Is there a way to kill make a child process "suicide"? I tried with process.exit(1) but apparently it kills the whole application I'm running. I just want to kill the child process (like when we call ...
0
votes
1answer
55 views
Anyway to get the ID of processes created by Supervisord?
I need the process ID of processes created using supervisord for use in a script. Processes spawned by supervisord don't create .pid files in their default directories, if at all.
How do I get the ...
2
votes
1answer
560 views
Write to spawned process stdin nodejs?
I have a script that I want to run from another one. The problem is that the child script (process) needs an user input before it continues.
var child = spawn('script');
...
0
votes
1answer
167 views
How to use prawn pdf inside a node / express app
In a node.js app I want to generate pdf docs and send it back to the user. I would like to use Prawn PDF as I have used it before and am comfortable using it.
I suppose I should use node's ...
0
votes
1answer
120 views
Node.js child process, access process object in event handle?
So I have an array of child processes in my NodeJs application. Now I have
cp_array[i].process.on("exit",exithandle(code,signal));
On each of them.
The problem is I want to be able to access the ...
0
votes
1answer
27 views
How can I call GAP functions from a shell script?
I want to get the result of a function of the 'gap' software. This is an interactive command line tool mainly for mathematician who work on group theory related topics.
The documentation/faq states ...
1
vote
1answer
206 views
check if child_process has ended in node.js?
I am creating a cakefile using node.js and want to know if a child_process has ended before moving on the next one.
{exec} = require 'child_process'
exec 'casperjs test.js', (err, stdout, stderr) ...
1
vote
1answer
1k views
Nodejs Child Process: write to stdin from an already initialised process
I am trying to spawn an external process phantomjs using node's child_process and then send information to that process after it was initialized, is that possible?
I have the following code:
var ...
2
votes
1answer
199 views
Killing a Windows 16-bit process from a batch file
I have this situation where an old computer with Windows XP is working as a server for a system, and has the possibility to send alarms to me when something goes wrong. However, this server program ...
0
votes
3answers
81 views
What exception to throw to indicate child process freezed
Question 1 - practical
I run child process in my C# application using System.Diagnostics.Process. Like the following:
Process process = new Process();
// ... StartInfo initialization here
int ...
0
votes
1answer
343 views
exec and PATH on heroku with buildpacks
I use this buildpack in order to use casperjs on heroku.
Once my app created, I check my PATH
$ heroku config:get PATH
/usr/local/bin:/usr/bin:/bin:/app/vendor/phantomjs/bin:/app/vendor/casperjs/bin
...
0
votes
4answers
271 views
How do I receive notification in a bash script when a specific child process terminates?
I wonder if anyone can help with this?
I have a bash script. It starts a sub-process which is another gui-based application. The bash script then goes into an interactive mode getting input from the ...
1
vote
1answer
139 views
How to pass a key file when spawning an ssh command from node.js?
This works from my local terminal:
ssh -i ~/.ec2/mykey.pem ubuntu@ec2-yada-yada.amazonaws.com ls
Of course it does. But when I try the same using node.js' child_process.spawn command it complains ...
0
votes
0answers
188 views
Trying to exec svn ls command in a nodejs child process returning error
I want to run an svn ls <path> command when I try it out I get an error stating
svn: '.' is not a working copy
svn: Can't open file '.svn/entries': No such file or directory
which is the ...
2
votes
1answer
157 views
EventMachine DeferrableChildProcess error handling
I'm having problems making EventMachine::DeferrableChildProcess.open actually do any sort of error handling. Hopefully I'm doing it wrong. Here's an example:
require "eventmachine"
EM.run do
cp = ...
2
votes
1answer
1k views
node.js spawned process sticks around if script is killed
Is it possible to make sure that processes spawned with node.js child_process will be killed when the parent is killed?
Here's an example script
var spawn = require('child_process').spawn;
var ...
0
votes
1answer
232 views
Getting data from python child process to Node.js
I have some code in Python and I am invoking the Python code from Node.js. I am able to get the code executed, however I am stuck with getting the data streamed from Python to node.js.
Help me in ...
0
votes
1answer
577 views
Node.js spawn vlc child process not working in express
I'm using node.js and express to create a controller of sorts for my home media centre that can be operated through a browser.
I'm having a lot of trouble spawning the VLC process, but strangely only ...

