Created
April 20, 2018 09:19
-
-
Save marinsagovac/90bf213b91d7f8758db7e02b9f09eb12 to your computer and use it in GitHub Desktop.
CouchDB
This file contains 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 | |
======= | |
sudo add-apt-repository ppa:jderose/couchdb-1.7.0 | |
sudo apt-get update | |
sudo apt-get remove couchdb couchdb-bin couchdb-common -yf | |
sudo apt-get install couchdb -y | |
sudo ufw allow 5984 | |
sudo ufw allow 6984 | |
curl localhost:5984 | |
sudo systemctl restart couchdb | |
http://localhost:5984/_utils/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment