What is the Fabric command to execute a shell command remotely?localrungetput
Question
What is the Fabric command to execute a shell command remotely?localrungetput
Solution
The Fabric command to execute a shell command remotely is run(). Here is an example of how to use it:
from fabric import Connection
c = Connection('web1')
c.run('uname -s')
In this example, uname -s is the shell command being executed remotely on the server web1. The output of the command will be displayed in your local terminal.
Similar Questions
What is the Fabric command to upload a file (from local to remote)?localrunputget
What is the Fabric command for asking information to the user?localaskpromptput
What Cmdlet will allow us to execute a command on a remote host?
Which of the following commands can be used for installing the Fabric network in Hyperledger?npm install -n fabricnpm install network.fabricnpm install Network --fabricnpm install fabric-network
A user has created a fabric application named FABRIC-EXAMPLES. Here in the "docker-compose-ca.yaml" file in the "docker" folder, the configuration for certificate authority is defined. The file contains the services ca.org1, ca.org2 and ca.orderer. The ca.org1 contains a command that is used to start the Fabric CA server inside the container.What is the correct syntax of this command?sh -c ‘fabric-ca-server start -p -p admin:adminpw’sh -c ‘fabric-ca-server enable -p admin:adminpw -k’sh -c ‘fabric-ca-server start -b admin:adminpw -d’sh -c ‘fabric-ca-server enable -b -p admin:adminpw’
Upgrade your grade with Knowee
Get personalized homework help. Review tough concepts in more detail, or go deeper into your topic by exploring other relevant questions.