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
| heartbeat[6792]: 2008/06/24_11:06:21 info: Initial resource acquisition complete (T_RESOURCES(us)) | |
| IPaddr[6867]: 2008/06/24_11:06:22 INFO: Running OK | |
| heartbeat[6832]: 2008/06/24_11:06:22 info: Local Resource acquisition completed. |
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
| # Node 1 | |
| sudo ifconfig eth0:0 | |
| eth0:0 Link encap:Ethernet HWaddr 00:16:3e:3c:70:25 | |
| inet addr:193.219.108.238 Bcast:193.219.108.255 Mask:255.255.255.0 | |
| UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 |
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
| # Node 2 | |
| sudo ifconfig eth0:0 | |
| eth0:0 Link encap:Ethernet HWaddr 00:16:3e:92:ad:78 | |
| UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 |
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
| # Node 1 | |
| sudo /etc/init.d/heartbeat stop |
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
| heartbeat[6148]: 2008/06/24_11:05:09 ERROR: Message hist queue is filling up (500 messages in queue) |
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
| sudo iptables -L | |
| Chain INPUT (policy ACCEPT) | |
| target prot opt source destination | |
| ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED | |
| ACCEPT udp -- anywhere anywhere udp dpt:694 | |
| ACCEPT tcp -- anywhere anywhere tcp dpt:ssh | |
| ACCEPT tcp -- anywhere anywhere tcp dpt:www | |
| DROP all -- anywhere anywhere | |
| Chain FORWARD (policy ACCEPT) |
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
| sudo apt-get install automake autoconf libtool subversion-tools help2man | |
| sudo apt-get install build-essential erlang libicu38 libicu-dev | |
| sudo apt-get install libreadline5-dev checkinstall libmozjs-dev wget | |
| wget http://mirror.public-internet.co.uk/ftp/apache/incubator/couchdb/0.8.0-incubating/apache-couchdb-0.8.0-incubating.tar.gz | |
| tar -xzvf apache-couchdb-0.8.0-incubating.tar.gz | |
| cd apache-couchdb-0.8.0-incubating | |
| ./configure | |
| make && sudo make install | |
| sudo adduser couchdb | |
| sudo mkdir -p /usr/local/var/lib/couchdb |
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
| sudo iptables -I INPUT 3 -p tcp --dport 5984 -j ACCEPT |
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
| {"couchdb":"Welcome","version":"0.8.0-incubating"} |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
| "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <!-- The javascript will live in addressbook.js --> | |
| <script src="http://aaa.bbb.ccc.ddd:5984/_utils/addressbook.js"></script> | |
| <title>Address Book</title> | |
| </head> | |
| <body> | |
| <h1>Address Book</h1> |