A Python library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.
0
votes
0answers
10 views
Fabric 'contains' not finding text properly
I am trying to run the following command in fabric
contains('~/.bash_profile', 'bind' , exact=False)
it keeps returning 'False' even when the words 'bind' are clearly present.
Here is my bash file:
...
0
votes
1answer
13 views
Why does Fabric usually output an extra empty line?
In Fabric deployments, there is often an extra empty response line output.
ie, after running
run('pwd')
Fabric will return
[mydomain] out: /mydir
[mydomain] out:
Why is this?
2
votes
0answers
8 views
Fabric - Sequential meta-tasks?
I have a task that executes tasks -
@roles('group_django')
@task
@serial
def deploy_web():
execute(pre_deploy)
execute(fix_srv_perms)
execute(force_checkout_branch_to_production)
...
0
votes
0answers
32 views
Fabric directory copy with status of copying
I am trying to copy a directory from a local to remote system using Fabric in Python. The directory is rather large ~150MB and I am using put() function to copy the folder. The problem I see is that ...
0
votes
1answer
16 views
Temporarily change current directory in Rake
I would like to run multiple commands need to be (or is easier to be) in another directory, then once they're done, return back to the previous working directory.
I'm envisioning something similar to ...
0
votes
2answers
31 views
Python Fabric and password prompts
I see that there are a few questions regarding fabric and passwords. I know that if I pass -I to fabric then the password I enter is passed to the environmental variable "password." The problem is ...
1
vote
2answers
34 views
fabric without fabfile - run and sudo gives error, but not local
Hi I am using follwoing code in a python script (not running fab from command line), at line A when I change local to run or sudo, it gives me error like:
No hosts found. Please specify (single) ...
0
votes
1answer
24 views
Fabric deployment with virtualenv - which user?
I'm trying to deploy an "app" written on top off web.py with fabric on a VPS running Arch Linux.
But I'm confused about best pratices regarding Fabric and virtualenv: which user should I use to ...
0
votes
0answers
17 views
Fabric returns paramiko exception when calling 'run' for the second time
I'm using fabric version 1.6.0 The host is Windows 2008 R2 with cygwin 1.5.25 installed running OpenSSH_5.1p1
Doesn't matter which commands I execute using fabric.api.run(), but second run() always ...
2
votes
0answers
19 views
Fabric sudo silently failing
I'm using Fabric 1.6.0 on OS X 10.8.2, running commands on a remote host on Ubuntu Lucid 10.04.
On the server, I can run sudo /etc/init.d/celeryd restart to restart the Celery service.
I pass the ...
1
vote
1answer
35 views
Simulate KeyboardInterrupt with fabric
How do I fire a Ctrl+C with fabric, in other words is it possible to trigger KeyboardInterrupt manually via bash?
0
votes
1answer
46 views
Python raw input and system.split in a fab file
Python newbie here. Lets say I have this:
def test_servers():
env.user = getpass.getuser()
env.hosts = []
And I want to do something like this:
def test_servers():
...
2
votes
1answer
33 views
launching a remote detached process with fabric
I wan to run a program remotely using fabric in python
If i run a program on machine A :
with (settings(host_string = machine_B_ip, user = 'ubuntu', key_filename = 'somepemfile.pem')):
...
0
votes
1answer
20 views
Use fabric to excute code on a remote server from within python
I would like to call "run()" or "sudo()" with fabric to execute a script on a remote host.
However, I want to do this from within python, and not from the command line:
so instead of:
fab.py:
def ...
1
vote
1answer
42 views
Sync Fabric with South
When i try execute a schemamigration with south with the following code:
# coding=utf-8
from fabric.api import env, hosts, local, run, cd
def updatebd():
local('cd ...
1
vote
2answers
83 views
Passing a Fabric env.hosts sting as a variable is not work in function
Passing a Fabric env.hosts sting as a variable is not work in function.
demo.py
#!/usr/bin/env python
from fabric.api import env, run
def deploy(hosts, command):
print hosts
env.hosts = ...
1
vote
1answer
53 views
Python - fabric log file creation using definitions and env.hosts
Been trying to solve this but can't seem to make it work. I want to create a log file that looks like $HOSTNAME-timestamp. For example I have this:
def test_servers():
env.user = ...
1
vote
1answer
32 views
Per-project Fabric settings, how?
Sorry for the trivial question:
I manage multiple projects, each one is deployed or interacts with one or more server(s).
I maintain my main fabric.py in home. Now, since projects come and go every ...
1
vote
0answers
55 views
Deploying Django with Mezzanine on FastCGI
I'm in the middle of trying to deploy a Django project on Subsys.no, Who uses FastCGI. I have never deployed a project before and have been trying for 3 days straight.
I have made a virtualenv on the ...
1
vote
0answers
65 views
Django deployment with fabric
I am trying to build a django-based web console for deploying my sites with fabric, in which there are dropdowns for different hosts(prod/stage) and different branches from git and able to select and ...
0
votes
1answer
40 views
Automatically read requirements.txt in fabric or deploy
I have a flask app where I'm trying to automate deployment to EC2.
Not a big deal, but is there a setting in either Fabric or Distribute that reads the requirements.txt file directly for the ...
0
votes
0answers
33 views
Fabric won't install a certain library (setuptools)
I'm trying to install a Python package called setuptools (0.6c11) on a remote machine by using Fabric. The problem is that the setup.py-script tells me it cannot find a file required for the ...
0
votes
1answer
29 views
Loading module at runtime works except under fabric
I have 2 files in a directory: loader.py & mod1.py. Loader.py dynamically instanciates a class in mod1.py and calls a method on it. Here is mod1.py
class MyClass1:
def run(self):
...
0
votes
0answers
21 views
Running a python app on AWS with fabric
I'm trying to run a python web app on AWS. It works fine if I log into AWS with SSH. But with fabric this does not work. I tried:
run('python app.py &')
And:
sudo('python app.py &')
No ...
0
votes
1answer
78 views
python fabric no host found must manually set 'env.host_string'
Is there any way to get this to work with env.hosts? As opposed to having to loop manually whenever I have multiple hosts to run this on?
I am trying to use the fabric api, to not have to use the ...
2
votes
2answers
101 views
plain shell script vs a deployment tool
I am working on trying to replace (improve) in our project our deployment process, trying as much as possible to automate it. Currently we are using plain shell script. I've done some research on ...
1
vote
1answer
32 views
How to simulate fabric execution
Is there a way to tell fabric to just print the commands it will execute instead of actually execute them?
I'm preparing an installation script and if it fails I'll have to uninstall the steps ...
3
votes
1answer
103 views
fabric keeps asking for password using SSH connection
I'm trying to connect to a windows azure instance using fabric, but despite I configure ssh conection to execute commands, fabric keeps asking for password.
This is my fabric file:
def azure1():
...
1
vote
0answers
89 views
Software deployment solution. What is the best practices? [closed]
Not sure if stackoverflow is the right place for my question or serverfault. Anyway my question:
There are a lot of different systems for deployment. Looks like there are 4 mainstream groups:
own ...
2
votes
2answers
60 views
Python Fabric script reports done but doesn't work properly
I have the fabfile as per below. When I manually ssh into the remote server and perform the commands exactly as per the fabfile, it works fine. However, when I run the fabfile, it outputs the same ...
0
votes
1answer
222 views
Python Fabric - No hosts found. Please specify (single) host string for connection:
How do I get No hosts found. Please specify (single) host string for connection: ?
How to a resolve with fabric?
def bootstrap():
host = 'ec2-54-xxx.xxx.xxx.compute-1.amazonaws.com'
...
0
votes
1answer
67 views
ssh python fabric
I don't actually understand how to do that.
I have access to local computer for example 192.168.1.101 with some_user. From that computer i have access to another comp (via vpn) 10.0.132.17 and only ...
0
votes
2answers
57 views
escaping quotes in psql command for fabric script
building on this question, I'm trying to delete all tables in my postgresql database with a fabric command. The bash command I'm trying to run is
#!/bin/bash
TABLES=`psql $PGDB -t --command "SELECT ...
1
vote
0answers
145 views
What is Windows Fabric and how to host services in it?
I recently installed Windows Server Service Bus 1.0 (on a Windows Server 2008 R2 machine).
That also installs "Windows Fabric" (not AppFabric).
Could not find much information on it, and googleing ...
1
vote
1answer
16 views
How can I find which role my fabfile is executing under in a task?
In the command line I do:
fab task -Rproduction
Is there a hook that lets me find out what role I'm executing under in the task?
1
vote
1answer
206 views
python - running ssh/rsync commands in a script called via crontab
I have a very strange issue that I can't seem to figure out.
When I execute a python script containing the following lines while inside a SSH terminal (putty), it works fine. But the moment I run ...
1
vote
0answers
17 views
Fabric: current hostname as a variable [duplicate]
I want to use the name of a remote host in a local fabric command
$ fab -H my_servername,my_secondserver do_setup
and in the fabfile.py
from fabric.api import local, lcd, run, sudo, put
def ...
0
votes
1answer
69 views
Fabric + Virtualenvwrapper gives fatal error: run() received nonzero return code 1 while executing
I have a fabric script to use virtualenvwrapper to create virtualenv, but after running mkvirutalenv the fabric script complains about return code, see below
[localhost] run: export ...
0
votes
1answer
61 views
Setting $PATH variable with Fabric 1.6.0
I'm trying to run a command that I've installed in my home directory on a remote server. It's already been added to my $PATH in .bash_profile. I'm able to use it when logged in remotely via a normal ...
0
votes
1answer
61 views
Running Django syncdb and migrations with Chef
We are moving towards deploying our Django apps with Chef. One question I have is what is the best way to handle the following commands:
./manage.py syncdb
./manage.py migrate --noinput
./manage.py ...
0
votes
0answers
42 views
Fabric String Issue
I am a complete beginner with Python and fabric. I have the following code:
def initialise_clients( hostlist):
env.roledefs['clients']=hostlist
print hostlist
print("Setting up deployment: ...
2
votes
1answer
46 views
Fabric cannot import module in function
This is an extract from my fabric script
def create_php_site(name):
"""
Creates a new php installation
"""
from resource.php.git import gitignore
from resource.php.nginx import ...
0
votes
0answers
44 views
Sphinx autodoc not importing modules
Hi I am writing some documentation for a Django project using sphinx.
My project (Dajngo 1.4) looks like this:
/funproject
/documentation
# this is where sphinx files live
/source
...
0
votes
1answer
35 views
fabric pass arguments to roledefs
I know using fabric, you can pass arguments to fabric task like:
def task(something=''):
print "You said %s" % something
fab task:something='hello'
what if I want to pass some arguments to ...
0
votes
1answer
243 views
No handlers could be found for logger “paramiko.transport”
I am running some fabric tasks inside of flask. Flask is running inside of wsgi in apache. Once in a while I get this error in the apache logs:
No handlers could be found for logger ...
1
vote
2answers
96 views
App deployment with fabric and Git
Hello I create a git repository.
After I followed the guide of generation for SSH key, my git add and git commit are working well.
Against by the following fabric script
run("git clone ...
0
votes
1answer
83 views
Fabric will stop redis server but it will not start it again
Fabric will stop my redis server but it will not start. I made to attempts with fabric but with paramiko it worked. Why will Fabric not start a redis server? I can use paramiko but that seems kinda ...
1
vote
0answers
131 views
How can I tunnel SSH through 2 gateways to a remote host using Fabric?
I'm trying to figure out how to use Fabric to simplify SSHing into and running commands on a machine separated by two gateways. The setup looks like this:
Local host -> Gateway 1 -> Gateway 2 ...
0
votes
0answers
60 views
No output when traversing SOCKS5 proxy with Fabric/Paramiko
When trying to traverse a SOCKS5 proxy to a RHEL5 Linux host using Fabric 1.6, the command returns but no output is returned to the stdout.
$> fab -H myhost -f ./fabfile.py remote_test ...
0
votes
1answer
97 views
Get celery each task log
Right now I'm using celery to handle my deployment script(fabric). So I need to save every project deployment log to database, then later I can check whether the deployment run perfectly or not. ...

