Couchbase User Automation On Linux

In this article, you will examine how to manage couchbase user operations with an automation via bash script. !/bin/bash v1=$1 v2=$2 while : do echo “###################” echo “1. Get Users Information” echo “2. Current User’s Roles List” echo “3. Change Password” echo “4. List All Roles” echo “5. Grant Role Continue Reading

Couchbase Server Upgrade On Linux

Upgrade Couchbase Server is quite simple. You can upgrade your couchbase server with a few steps .I am going to upgrade my server from 6.0 to 6.5. Couchase allows directly upgrade from 6.0 to 6.5.If you want to upgrade from previous versions, you have to upgrade previous paths before upgrade Continue Reading

Couchbase Installation On Linux

In order for couchbase to work more efficiently, we need to make some settings on the operating system, before non-root database installation. Firstly, we have to check THP status. With ‘cat’ command below, we can check the status. cat /sys/kernel/mm/transparent_hugepage/enabled cat /sys/kernel/mm/transparent_hugepage/defrag [always] madvise never As a result, it will Continue Reading