This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Edit your ~/.ssh/config: | |
Host myserver | |
HostName www.yourserver.com | |
User deploy | |
LocalCommand echo -e "\033]Phff0000\033\\" | |
PermitLocalCommand yes | |
Then: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=PROGRESS REPORT==== 24-Mar-2009::20:30:37 === | |
supervisor: {local,inet_gethost_native_sup} | |
started: [{pid,<0.106.0>},{mfa,{inet_gethost_native,init,[[]]}}] | |
=PROGRESS REPORT==== 24-Mar-2009::20:30:37 === | |
supervisor: {local,kernel_safe_sup} | |
started: [{pid,<0.105.0>}, | |
{name,inet_gethost_native_sup}, | |
{mfa,{inet_gethost_native,start_link,[]}}, | |
{restart_type,temporary}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Rails initializer for CouchDB | |
begin | |
config = YAML::load(File.open('config/couchdb.yml')) | |
rescue | |
puts "ERROR: Could not read config/couchdb.yml" | |
exit(1) | |
end | |
begin | |
RelaxDB.configure(config[RAILS_ENV]) |