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
#http://wiki.apache.org/couchdb/Setting_up_an_Admin_account | |
#On Ubuntu you should find local.ini located here: | |
/usr/local/etc/couchdb/local.ini | |
#Make sure ownership is changed to couchdb: | |
sudo chown couchdb:couchdb /usr/local/etc/couchdb/local.ini |
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
# start couchdb as a daemon | |
sudo /usr/local/etc/init.d/couchdb start | |
# or start couchdb in shell | |
sudo -u couchdb 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
svn co http://svn.apache.org/repos/asf/couchdb/trunk couchdb | |
#svn checkout http://svn.apache.org/repos/asf/couchdb/branches/0.10.x | |
cd couchdb | |
sudo ./bootstrap | |
./configure | |
make && sudo make install |
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
# Change the port if you’re not using 22 (you probably shouldn’t) and change the remote.address. | |
ssh -L5984:127.0.0.1:5984 -p 22 -i ~/.ssh/id_rsa [email protected] |
NewerOlder