Tagged Questions
A Python library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.
38
votes
3answers
6k views
Activate a virtualenv via fabric as deploy user
I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull.
...
24
votes
2answers
2k views
How do you use pip, virtualenv and Fabric to handle deployment?
What are your settings, your tricks, and above all, your workflow?
These tools are great but there are still no best practices attached to their usage, so I don't know what is the most efficient way ...
20
votes
9answers
5k views
How to set target hosts in Fabric file
I want to use Fabric to deploy my web app code to development, staging and production servers. My fabfile:
def deploy_2_dev():
deploy('dev')
def deploy_2_staging():
deploy('staging')
def ...
10
votes
4answers
375 views
Can a Python Fabric task invoke other tasks and respect their hosts lists?
I have a fabfile like the following:
@hosts('host1')
def host1_deploy():
"""Some logic that is specific to deploying to host1"""
@hosts('host2')
def host2_deploy():
"""Some logic that is ...
10
votes
3answers
1k views
Python's Fabric: Connect to a host listed .ssh/config
I'm having trouble with Fabric not recognizing hosts that I have in .ssh/config.
My fabfile.py is as follows:
from fabric.api import *
env.hosts = ['lulu']
def whoami():
run('whoami')
...
9
votes
2answers
731 views
Best Fabric scripts for Django
What are the best stock Fabric scripts for deploying a typical Django project? Fabric looks very good, but seems to require you to start from scratch and write your own deployment script. Coming from ...
9
votes
4answers
2k views
Can I prevent fabric from prompting me for a sudo password?
I am using Fabric to run commands on a remote server. The user with which I connect on that server has some sudo privileges, and does not require a password to use these privileges. When SSH'ing into ...
7
votes
3answers
558 views
Trouble activating virtualenv on server via Fabric
I am trying to run some Django management commands via Fabric on my staging server.
The problem is it seems Fabric is not able to activate the virtualenv and thus using system python/libs when ...
7
votes
3answers
769 views
What is Ruby's equivalent of Python's fabric?
What is the Ruby equivalent of something like fabric? (light weight)
7
votes
4answers
991 views
Python Fabric: How to handle arbitrary remote shell prompt for input?
This is related to this question here, but with a slight twist: instead of just passing 'yes' or 'no', I need Fabric to pass an arbitrary string to the remote shell.
For instance, if the remote shell ...
7
votes
4answers
2k views
Python Fabric: How to answer to keyboard input?
I would like to automate the response for some question prompted by some programs, like mysql prompting for a password, or apt asking for a 'yes' or ... when I want to rebuild my haystack index with ...
6
votes
1answer
179 views
How to get Fabric to automatically (instead of user-interactively) interact with shell commands? Combine with pexpect?
Seeking means to get Fabric to automatically (instead of user-interactively) interact with shell commands (and not just requests for passwords, but also requested user input when no "stdin/interactive ...
6
votes
2answers
198 views
Is there anything like Fabric for Perl?
I really like Fabric for personal projects, but I am working in a Perl-oriented environment in my day-to-day job. I’d like to stay away from introducing another language to the workflow, so I’m ...
6
votes
1answer
541 views
fabric vs pexpect
I've stumbled upon pexpect and my impression is that it looks roughly similar to fabric. I've tried to find some comparision, without a success, so I'm asking here, in case someone has experience with ...
6
votes
2answers
862 views
How to dynamically create module level functions from methods in a class
I am trying to dynamically create module level functions from the methods in a class. So for every method in a class, I want to create a function with the same name which creates an instance of the ...
6
votes
2answers
388 views
The anatomy of a Python web project: development, packaging, deployment
I'm new to Python (from Java+Ant) and was wondering if someone could detail how to best use Fabric+Pip+Virtualenv to set up a Python web application package skeleton.
The end goal is to be able to do ...
6
votes
2answers
1k views
How to make Fabric ignore offline hosts in the env.hosts list?
This is related to my previous question, but a different one.
I have the following fabfile:
from fabric.api import *
host1 = '192.168.200.181'
offline_host2 = '192.168.200.199'
host3 = ...
5
votes
2answers
612 views
Using an SSH keyfile with Fabric
How do you configure fabric to connect to remote hosts using SSH keyfiles (for example, Amazon EC2 instances)?
5
votes
4answers
337 views
Django Deployment: Handling data in database
Right now I am using git for Django deployment which seems satisfying to me. My only problem is still how to handle the data in the database properly. Eg. I need often to edit data coming from the ...
4
votes
1answer
101 views
Best way to add an environment variable in fabric?
I would like to pass a few values from fabric into the remote environment, and I'm not seeing a great way to do it. The best I've come up with so far is:
with prefix('export FOO=BAR'):
run('env ...
4
votes
1answer
113 views
Is there a way to capture the collection of shell commands that fabric outputs?
I've got a collection of fab files that I use to manage servers, install applications on them etc for clients. Some of them are not very happy when I deliver install documentation as a fabfile and ...
4
votes
1answer
250 views
Understanding fabric
I've just stumbled upon Fabric and the documentation doesn't really make it obvious how it works.
My educated guess is that you need to install it on both client-side and server-side. The Python ...
4
votes
2answers
103 views
Same tag name from different location leads to problems
I'm using Mercurial and Fabric to deploy my site. I'd never used Fabric before so I copied an example fab file online and then changed the vars to match my own site.
Here are the lines of code:
def ...
4
votes
1answer
496 views
Advanced Django Book
I have ordered the Django Book, but I wonder if there's a good book which goes beyond the subject discussed in that book. For instance, the following topics are not discussed, but I would be ...
4
votes
2answers
93 views
Is there a way to see if there are updates available from a central Mercurial repostiory before pulling them?
I am using Fabric to deploy my Python application from my local machine. I would like to hit our central Mercurial repository (hosted on BitBucket.org) to see if my local repository is at the same rev ...
4
votes
3answers
363 views
How do I create a new file on a remote host in fabric (python deployment tool)?
I'd like to create a file with the name passenger_wsgi.py on a remote host. I'd like to use the following string to create the file's content:
'''
import sys, os
sys.path.insert(0, ...
4
votes
3answers
2k views
How to continue the task when fabric meet an error
When i define a task run on several remote server, if the task run on server one and meet a error, fabric will stop and Abort the task. But I want to make fabric to ignore the error and run the task ...
4
votes
2answers
1k views
hg pull from bitbucket using fabric
I'm trying to use fabric to deploy a Django project and I get this error when I run hg pull:
[myusername.webfactional.com] run: hg pull
[myusername.webfactional.com] out: remote: Warning: Permanently ...
4
votes
1answer
736 views
Fabric auto-login in Windows
Relevant question:
http://stackoverflow.com/questions/2339735/fabric-password
I configured Putty to login with private-public keys (no password) using this guide:
...
4
votes
1answer
627 views
Fabfiles With Command Line Arguments
Is there a clean way to have your fabfile take command line arguments? I'm writing an installation script for a tool that I want to be able to specify an optional target directory via the command ...
4
votes
2answers
407 views
Why does Fabric display the disconnect from server message for almost 2 minutes?
Fabric displays Disconnecting from username@server... done. for almost 2 minutes prior to showing a new command prompt whenever I issue a fab command.
This problem exists when using Fabric commands ...
4
votes
2answers
455 views
How do I create a postgresql user with fabric
I want to create a database user for my setup fabric script but createuser has interactive password entering and seams not to like fabric.
4
votes
6answers
1k views
fabric and svn password
Assuming that I cannot run something like this with Fabric:
run("svn update --password 'password' .")
how's the proper way to pass to Fabric the password for the remote interactive command line?
...
4
votes
4answers
3k views
fabric password
Every time fabric runs, it asks for root password, can it be sent along same for automated proposes.
fab staging test
3
votes
1answer
50 views
Why can't I interact with redis-cli via fabric?
I have a fabric task set up like this:
@task
def cli():
command = [
os.path.join(env.servers_path, "bin", "redis-cli"),
]
run(" ".join(command))
Running it gives me a prompt, ...
3
votes
1answer
142 views
Fabric - sudo -u
I'm using fabric to launch a command on a remote server.
I'd like to launch this command as a different user (neither the one connected nor root).
def colstat():
run('python manage.py ...
3
votes
3answers
104 views
How to git commit nothing without an error?
I'm trying to write a fabric script that does a git commit; however, if there is nothing to commit, git exits with a status of 1. The deploy script takes that as unsuccessful, and quits. I do want to ...
3
votes
1answer
138 views
Run ssh-add with Fabric in a machine
I'm running some deployment tasks with Fabric that needs to checkout/update a Mercurial repository to the machine and then execute the appropriate copying/configuration.
Every time that I instatiate ...
3
votes
2answers
59 views
How to ForwardAgent yes using fabric?
I am successfully run()ning commands on remote server with my private key pair.
However, I'd like to do git clone ssh://private/repo on remote server using my local key (or using local ssh agent I'm ...
3
votes
3answers
188 views
fabric appears to start apache2 but doesn't
This question could possibly go in serverfault, but I think it is a programming problem.
I'm using fabric to remotely start a micro aws server, install git and a git repository, adjust apache config ...
3
votes
2answers
269 views
Is there anyway to put a django site into maintenance mode using fabric?
I'm currently using MaintenanceModeMiddleware to put my site into maintenance mode, but it requires you make the change in the settings.py file on the remote server. I would like to use fabric to ...
3
votes
1answer
1k views
Python: How do I copy a directory to a remote machine using Fabric?
I have a directory on my local machine that I would like to copy to a remote machine and rename using Fabric. I know I can copy file using put, but how do I copy a directory using Fabric. I know it's ...
3
votes
2answers
2k views
How connect to EC2 using keypair (.pem file) via Fabric
Anyone has any Fabric recipe that shows how to connect to EC2 using the pem file?
I tried writing it with this manner:
Python Fabric run command returns "binascii.Error: Incorrect padding"
But I'm ...
3
votes
3answers
684 views
How to hide the password in fabric when the command is printed out?
Say I have a fabfile.py that looks like this:
def setup():
pwd = getpass('mysql password: ')
run('mysql -umoo -p%s something' % pwd)
The output of this is:
...
3
votes
4answers
499 views
Stand-alone fabfile for fabric?
Is it possible to make the fabfile stand-alone?
I'm not very fond of running the external tool 'fab'. If I manage to get the fabfile standalone I can run the file from within the (Eclipse / Pydev) ...
3
votes
2answers
209 views
Emulate SSH sever for testing purposes
I have to write test for deployment script which uploads files through SSH, but I'd like to have it not depending on external servers configuration. This is how i see it:
Create 2 SSH daemons ...
3
votes
2answers
986 views
Activate a python virtual environment using activate_this.py in a fabfile on Windows
I have a Fabric task that needs to access the settings of my Django project.
On Windows, I'm unable to install Fabric into the project's virtualenv (issues with Paramiko + pycrypto deps). However, I ...
3
votes
1answer
829 views
How to setup Continuous Integration and Continuous Deployment for Django projects?
I am researching about how to set up CI and continuous deployment for a small team project for a Django based web application. Here are needs:
Developer check in the code into a hosted SVN server ...
3
votes
1answer
715 views
django fabric syncdb
How would you run this django command to syncdb with fabric automatically.
python manage.py syncdb --settings="app.settings.test"
if tried to do run, it gets stuck at the "Do you want to create ...
3
votes
2answers
450 views
How to make Fabric execution follow the env.hosts list order?
I have the following fabfile.py:
from fabric.api import env, run
host1 = '192.168.200.181'
host2 = '192.168.200.182'
host3 = '192.168.200.183'
env.hosts = [host1, host2, host3]
def df_h():
...