How To Install Couchbase 6.0.1 on Ubuntu 18.04 LTS

Install Couchbase on Ubuntu 18

Couchbase is an open-source, distributed key-value based NoSQL database. It comes in two flavors: Enterprise Edition (EE) and Community Edition (CE). Usually first to be released with new updates and bug fixes after testing and QA processes, the Enterprise Edition is the most up-to-date edition of Couchbase. Following suit, the Community Edition gets released shortly afterwards.

This article assumes you have at least basic knowledge of Linux, know how to use the shell, and most importantly, you host your site on your own VPS. The installation is quite simple and assumes you are running in the root account, if not you may need to add ‘sudo’ to the commands to get root privileges. I will show you through the step by step installation Vivaldi Browser on a Ubuntu 18.04 LTS (Bionic Beaver) server.

Install Couchbase on Ubuntu 18.04 LTS

Step 1. First make sure that all your system packages are up-to-date

sudo apt-get update
sudo apt-get upgrade
sudo apt install gdebi-core

Step 2. Installing Couchbase on Ubuntu 18.04 LTS.

First, download Couchbase Server debian package. If the Ubuntu 18.04 version is still not available the 16.04 version will do just well:

### COUCHBASE SERVER COMMUNITY EDITION ###
wget https://packages.couchbase.com/releases/5.0.1/couchbase-server-community_5.0.1-ubuntu16.04_amd64.deb
### COUCHBASE SERVER ENTERPRISE EDITION ###
wget https://packages.couchbase.com/releases/5.0.1/couchbase-server-enterprise_5.0.1-ubuntu16.04_amd64.deb

Next, install the previously downloaded Couchbase Server DEB package:

sudo gdebi couchbase-server-enterprise_5.0.1-ubuntu16.04_amd64.deb

After installation your Couchbase server should be up and running:

service couchbase-server status

Step 3. Configure Firewall Rules of Couchbase.

Use the below command to allow incoming TCP ports on UFW firewall as required by Couchbase Server:

sudo ufw allow from any to any port 369,8091:8094,9100:9105,9998,9999,11209:11211,11214,11215,18091:18093,21100:21299 proto tcp

Step 4. Accessing Couchbase.

Couchbase will be available on HTTP port 80 by default. Open your favorite browser and navigate to http://yourdomain.com:8091 or http://server-ip:8091 and complete the required the steps to finish the installation.

Congratulation’s! You have successfully installed Couchbase. Thanks for using this tutorial for installing Vivaldi browser on Ubuntu 18.04 LTS (Bionic Beaver) system. For additional help or useful information, we recommend you to check the official Couchbase Documentation.