Questions tagged [fabric]

A Python library and command-line tool for streamlining the use of SSH for application deployment or systems administration tasks.

Fabric provides a basic suite of operations for executing local or remote shell commands (normally or via sudo) and uploading/downloading files, as well as auxiliary functionality such as prompting the running user for input, or aborting execution.

Typical use involves creating a Python module containing one or more functions, then executing them via the fab command-line tool.

38 questions
0
votes
2 answers

Automated deployment of non-packaged stuff

I will have to deploy some custom machines where software is mostly installed by hand, which means: tarball downloaded and decompressed into a single directory, python source packages installed into virtualenvs, and things like that (no, it can't be…
0
votes
2 answers

Checking that PostgreSQL and Apache are running on Ubuntu?

I am trying to learn the best practices for checking that Apache and Postgres are running on my server. If either of them have stopped, I want to auto-restart these services. I'm using Ubuntu 12.04 LTS. My strategy, was to write a cron job that…
celenius
  • 273
  • 1
  • 4
  • 17
0
votes
1 answer

apt-get update directly after boot results in many Ign and Hit, resulting in 'no installation candidate' errors

I'm experiencing a strange issue with a fabric script I'm using to bootstrap a server on EC2. I launch a stock Ubuntu 12.04 AMI (ami-3d4ff254), wait for it to start, then proceed with: with settings(host_string="ubuntu@%s" % i.dns_name, …
jberryman
  • 914
  • 2
  • 10
  • 25
0
votes
1 answer

Using SSH config and keys in /etc/ssh with Fabric

I am trying to use SSH keys with Fabric instead of having to enter a password each time I run fab. All of our hosts share the same /etc/ssh/ssh_known_hosts file which contains all of their public rsa keys, and I'm able to SSH without a password…
Banjer
  • 3,974
  • 12
  • 41
  • 47
0
votes
1 answer

linux servers remote managment python fabric

Can anyone give me examples for the following scenarios on python fabric? I have been searching for weeks but just can not seem to get the right formula going. I am trying to achieve the following: rsync a folder from local server to a remote…
Riaan
  • 421
  • 5
  • 13
0
votes
1 answer

Will an iSCSI SAN perform well when connected to a 2232PP fabric extender?

I intend to rack up servers and iSCSI SANs and connect them to 2232PPs that are fabric extenders uplinked to 5548UPs on a distribution rack. Will an iSCSI SAN perform well when connected to a 2232PP fabric extender? Are there any special steps I…
Alain O'Dea
  • 645
  • 3
  • 12
  • 27
0
votes
1 answer

Are all SFP+ tranceivers usable for FEX between Nexus 5000 and Nexus 2000?

I am looking at building a network with Nexus 5000 parent switches and Nexus 2000 fabric extenders. The mystery at the moment is what kind of SFP+ tranceivers are required for cross-connecting racks. Right now I am considering FET-10G, but I am not…
Alain O'Dea
  • 645
  • 3
  • 12
  • 27
0
votes
2 answers

Deploying Java Web Applications on Distributed Servers

I'm having to deploy my application to three servers and soon to be four. This is becoming a pain and I'm looking to automate it. I was going to script this, but this is such a common problem and there are so many tools out there (Puppet, Chef,…
Bradford
  • 295
  • 3
  • 7
1 2
3