Wednesday, February 16, 2022

Deploy Apache CouchDB ( Create Database in CouchDB )

 in This Tutorial you will Learn " How To Install Apache CouchDB & Create Databases in CouchDB on Rocky Linux 8.5"
CouchDB is an open-source, document-oriented NoSQL database.
Apache CouchDB is an open-source document-oriented NoSQL database, implemented in Erlang.
Homepage - https://couchdb.apache.org/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; dnf groupinstall "Development Tools" -y

yum install -y yum-utils
yum-config-manager --add-repo https://couchdb.apache.org/repo/couchdb.repo
dnf makecache ; dnf -y install couchdb
systemctl start couchdb ; systemctl enable couchdb ; systemctl status couchdb
http://127.0.0.1:5984/_utils/

Create Databases in CouchDB -
curl -u admin:P@ssword123 -X PUT http://127.0.0.1:5984/production_db
curl -u admin:P@ssword123 -X PUT  http://127.0.0.1:5984/sample_db
curl -u admin:P@ssword123 -X PUT http://127.0.0.1:5984/users_db
http://127.0.0.1:5984/_utils/
_________________________________________________________________________________________

No comments:

Post a Comment