What is Couchbase?
Couchbase is a distributed document database with a powerful search engine and in-built operational and analytical capabilities. It brings the power of NoSQL to the edge and provides fast, efficient bidirectional synchronization of data between the edge and the cloud.
How to install Couchbase on Red Hat Enterprise (RHEL) and CentOS?
1 2 3 4 5 6 7 8 |
## Download the meta package curl -O https://packages.couchbase.com/releases/couchbase-release/couchbase-release-1.0-x86_64.rpm ## Install the meta package sudo rpm -i ./couchbase-release-1.0-x86_64.rpm ## Install Couchbase Server sudo yum install couchbase-server-community |
How to install Couchbase on Ubuntu and Debian?
1 2 3 4 5 6 7 8 9 10 11 |
## Download the meta package curl -O https://packages.couchbase.com/releases/couchbase-release/couchbase-release-1.0-amd64.deb ## Install the meta package sudo dpkg -i ./couchbase-release-1.0-amd64.deb ## Reload the local package database sudo apt-get update ## Install Couchbase Server sudo apt-get install couchbase-server-community |
How to install Couchbase on SUSE Linux?
1 2 3 4 5 6 7 8 9 10 11 12 13 |
## For SUSE Linux 15 ## Download the meta package curl -O https://packages.couchbase.com/releases/7.0.2/couchbase-server-community-7.0.2-suse15.x86_64.rpm ## Install Couchbase Server sudo rpm -i couchbase-server-community-7.0.2-suse15.x86_64.rpm ## SUSE Linux 12 ## Download the meta package curl -O https://packages.couchbase.com/releases/7.0.2/couchbase-server-community-7.0.2-suse12.x86_64.rpm ## Install Couchbase Server sudo rpm -i couchbase-server-community-7.0.2-suse12.x86_64.rpm |
How to install Couchbase on Oracle Linux?
1 2 3 4 5 6 7 8 |
## Download the meta package curl -O https://packages.couchbase.com/releases/couchbase-release/couchbase-release-1.0-6-x86_64.rpm ## Install the meta package sudo rpm -i ./couchbase-release-1.0-6-x86_64.rpm ## Install Couchbase Server sudo yum install couchbase-server-community |
How to install Couchbase on AWS EC2 Amazon Linux 2?
1 2 3 4 5 |
## Download the meta package curl -O https://packages.couchbase.com/releases/7.0.2/couchbase-server-community-7.0.2-amzn2.x86_64.rpm ## Install Couchbase Server sudo rpm --install couchbase-server-community-7.0.2-amzn2.x86_64.rpm |
How to install Couchbase on Windows?
1 2 3 4 5 |
## Download the msi package Invoke-WebRequest -Uri https://packages.couchbase.com/releases/7.0.2/couchbase-server-community_7.0.2-windows_amd64.msi ## Install Couchbase Server start /wait msiexec /i couchbase-server-community_7.0.2-windows_amd64.msi /qn |
Validate the installation was successfull.
1 2 3 4 5 6 7 8 9 10 |
## Start couchbase ## on Linux sudo systemctl start couchbase-server # sudo service couchbase-server start ## on Windows net start CouchbaseServer ## Try to connect to couchbase server, replace the host and port (for custom port) cbworkloadgen -n [host]:8091 |