Install Couchbase Server on CentOS
Couchbase is an open-source, distributed, document-oriented NoSQL database with built-in Memcached service. This article describes how to install Couchbase Server on Linux.
The Linux release version is CentOS.
1. Download The Couchbase installation package
Download with the wget command:
wget http://packages.couchbase.com/releases/2.0.0/couchbase-server-enterprise_x86_64_2.0.0.rpm
2. Run the rpm command to install Couchbase.
rpm --install couchbase-server-enterprise_x86_64_2.0.0.rpm
An error occurred while running the command:
error: Failed dependencies: libcrypto.so.6()(64bit) is needed by couchbase-server-2.0.0-1976.x86_64 libssl.so.6()(64bit) is needed by couchbase-server-2.0.0-1976.x86_64
3. Install openssl
Find the installation package containing libcrypto. so.6 based on the error in step 1, and run the following command:
yum provides */libcrypto.so.6
Discover openssl098e-0.9.8e-17.el6.centos.2.x86_64
Install the opensll package of this version:
yum install openssl098e-0.9.8e-17.el6.centos.2.x86_64
4. reinstall Couchbase
rpm --install couchbase-server-enterprise_x86_64_2.0.0.rpm
Installed successfully! The following information is displayed:
Starting couchbase-server[ OK ]
You have successfully installed Couchbase Server.
Please browse to http://cache:8091/ to configure your server.
Please refer to http://couchbase.com for additional resources.
Please note that you have to update your firewall configuration to
allow connections to the following ports: 11211, 11210, 11209, 4369,
8091 and from 21100 to 21299.
By using this software you agree to the End User License Agreement.
See /opt/couchbase/LICENSE.txt.
Then, access http: // ip: 8091 in the browser for relevant configuration.
[Note] to install Couchbase, perform the following authorization settings: chown-R couchbase: couchbase.
For details about Couchbase Server, click here
Couchbase Server: click here
This article permanently updates the link address: