Questions tagged [remote-execution]

105 questions
0
votes
1 answer

Azure Lamp Stack using Terraform getting file provisioner error timeout - last error: dial tcp 20.237.241.47:22: i/o timeout

I am running Azure Lamp stack using terraform getting file provisioner error timeout - last error: dial tcp 20.237.241.47:22: i/o timeout this is the script i have coded, Any suggestions to fix this? resource "azurerm_resource_group" "main" { …
0
votes
0 answers

Python running a python script on remote hosts in parallel

I am looking for a way to run a python script on a set of remote hosts in parallel. The script would have the same name each host, but I need it to run on every host at the same time. Can I use Pool:multiprocessing to accomplish this? I am …
ajhowey
  • 41
  • 4
0
votes
1 answer

Not able to connect to remote host via terraform OCI ,remote-exec

I am new to Terraform , OCI . So I am now trying to ssh on a linux host in my OCI via cloud shell, but that host is in a private subnet. So I am trying below command but getting timeout error. Could you please tell me where I am getting this…
0
votes
1 answer

Kafka Key access on Ingress of a Python Flink Stateful function

I've been looking at Flink Stateful Functions. It looks super promising - except for one thing - and I hope I'm just missing it. For the life of me, can't see a way to access the kafka key from a kafka ingress in Python. In Java, I see I could use…
0
votes
0 answers

Launch powersehell script from server to remote computer

I'm try to send a command from a server to a computer and these command will be launch powershell script who're in network share. The script i'm trying to launch has to purpose to update something but it show à progress bar to see the evolution of…
0
votes
0 answers

Jenkins: How to execute a python program Remotely on windows slave

This is regarding executing a files python files in remote PC from jenkins using SSH I have installed Jenkins on a Windows 10 PC. The Remote PC is also a Windows 10 PC, which has anaconda3 installed and also OpenSSH servr In Manage Jenkins ->…
pachu
  • 1
  • 1
0
votes
1 answer

How to access an S3 object from a remotely executed fargate task?

I've written a java program to read from an S3 bucket, that's running in a Fargate task on AWS, but is failing with an AccessDeniedException The program is in a jar file that is being executed remotely using ECS Exec The task role for the Fargate…
0
votes
0 answers

Sending command to server from session opened via MSTSC (Remote Desktop Connection)

We are looking for ways to send command (we are trying to open browser via command) from Session connected. To elaborate more Server A opens remote connection to Client B via (mstsc). On Client B user clicks on shortcut and we need to execute…
David Karen
  • 137
  • 1
  • 5
0
votes
1 answer

Is there any method to execute a robot test on a separate remote windows machine?

I am trying to execute a robot test containing AutoTtLibrary. This test is executed locally on the PC but now I am trying to execute the same test on that PC but invoked from different PC. I used remoterunner library. While test started, I got…
0
votes
2 answers

How to not wait for the output of the remote execution?

I am using pysftp for remote execution, and the thing is that I don't want to wait for the output of the remote execution, I just want to start the execution and be done with it. import pysftp as sftp cnopts = sftp.CnOpts() cnopts.hostkeys =…
0
votes
0 answers

Trying to run an exe remotely on another server using Powershell and failing

We have Alteryx on several servers and want to be able to run jobs remotely from either command line or powershell, not through Alteryx API. I have run alteryx flows locally from command line and powershell locally for years but now with multiple…
Trees
  • 1
  • 1
0
votes
1 answer

Go: Emulate ssh remote execution of local script with arguments in golang

I'm trying to execute anytype of local script(sh/bash/python/ruby) or executable with arguments to a remote machine using go. ssh command: ssh user@10.10.10.10 "python3" - < ./test.py "arg1" package main import ( "log" "os" …
0
votes
1 answer

Does tensorflow-federated support placing training data on client side?

It's very awesome to see that tensorflow-federated could support distributed training now. I referred to the example here. However, it seems the training data are sent from server to client at each epoch, and the client(remote_executor_service)…
0
votes
1 answer

Terraform Google Cloud: Executing a Remote Script on a VM

I'm trying to execute a Script on a Google VM through Terraform. First I tried it via Google Startup Scripts. But since the metadata is visible in the Google Console (startup scripts count as metadata) and that would mean that anybody with read…
Michi
  • 29
  • 6
0
votes
1 answer

Bazel-buildfarm - specifying concurrency of worker

I am trying to build TensorFlow using bazel-buildfarm. I have a server and a single worker setup using the example configurations available at https://github.com/bazelbuild/bazel-buildfarm (see examples/ directory). The lone worker is on a 72-core…
esw405
  • 23
  • 3