Manage Connections and Disks

Couchbase-Server security can be enhanced by proper management of connections and disks.

Network Security Recommendations

Attaining a fully secure Couchbase Server network-environment requires appropriate measures in the following areas.

Establishing Firewalls and Protecting Files

The following measures are strongly recommended:

  • Set up a firewall to block epmd port 4369 from access from outside the cluster-network.

  • Set up a firewall to block erlang ports from access from outside the cluster-network. These ports are configurable: in the default installation, their range is: 21100 to 21299.

  • Restrict access to the following directories:

    • On Linux: /opt/couchbase

    • On Mac OS X: /Users/<user>/Library/Application Support/Couchbase/var/lib/couchbase, and /Applications/Couchbase Server.app/Contents/Resources/couchbase-core

    • On Windows (assuming the default installation-location has been used): C:\Program Files\Couchbase Server\

  • Ensure the confidentiality of passwords defined by the Full Administrator at cluster-initiallization; of all others used for the Admin and Cluster Admin roles; and of the master password. See Manage System Secrets for details on how to define and use the master password.

Securing the Network

To secure the network on which your Couchbase Server-cluster resides:

  • Allow administrative access to Couchbase Server only through specific machines, such as jump servers. To perform auditing on access-attempts made from these machines, turn on the OS-level auditing facility on each.

  • Use IPSec on your local network. For guidance, consult the following online information-resources:

Controlling Access to Files

To restrict user-access to files and directories, traditional file-permissions can be used. Additionally, RedHat Linux provides the following options:

Configuring IP Tables

SSH-access to Couchbase Server and access to the Couchbase Server administrative ports (8091 and 8092) can be restricted to specified machines. Such restrictions can be established either at the network or at the system level, using IP tables rules. Specifically, you can either:

  • Execute the iptables command.

  • Edit the file /etc/sysconfig/iptables:

    ##allow everyone to access port 80 and 443##
          -A INPUT -m state --state NEW -p tcp --dport 80 -j ACCEPT
          -A INPUT -m state --state NEW -p tcp --dport 443 -j ACCEPT

For more information, see IP tables rules. Additionally, a sample of IP tables rules can be found in this blog.

Controlling Ports

The following table lists a subset of Couchbase Server ports, access to which may need to be controlled. For a complete list of Couchbase Server ports, see Network and Firewall Requirements.

Port Description Node to node Node to client

8091

Web administration port

Yes

Yes

8092

Couchbase API port

Yes

Yes

8093

Used by query services for REST/HTTP traffic.

Yes

Yes

11207

Internal/external bucket port for SSL

No

Yes

11209

Internal bucket port

Yes

No

11210

Internal/external bucket port

Yes

Yes

11211

Client interface (proxy)

No

Yes

11214

Incoming SSL proxy

No

No

11215

Internal outgoing SSL proxy

No

No

18091

Internal REST HTTPS for SSL

No

Yes

18092

Internal CAPI HTTPS for SSL

No

Yes

4369

Erlang port mapper (epmd)

Yes

No

21100 to 21199 (inclusive)

Node data exchange

Yes

No

A sample script for configuring the IP-tables firewall-settings is located in the following blog posting: IPTables Firewall Settings for Couchbase DB and Couchbase Mobile Sync_gateway

Securing On-Disk Data: Encryption at Rest

Data that resides on physical media, and is intended to be used by Couchbase Server, should be protected.

Protecting Physical Media

Couchbase Server uses physical media to store files and indexes. If media are stolen, data becomes vulnerable to illicit access.

Therefore, to secure such data, encrypt all important data and index storage-locations, using transparent data encryption, provided by 3rd party on-disk encryption software-vendors; which denies data-access to anyone who either does not possess an appropriate encryption-key, or is otherwise non-compliant with the configured security policy. Such encryption ensures that stored data cannot be compromised; even if the database is stolen, copied, lost, or otherwise improperly accessed.

Commonly used 3rd party encryption tools include:

Encryption Targets

The tools listed above all allow either full disk or file-level encryption to be used. If file-level is chosen, the following Couchbase directories and files should be encrypted:

  • Data and index file paths

    • Linux: /opt/couchbase/var/lib/couchbase/data

    • Windows: C:\Program Files\couchbase\server\var\lib\couchbase\data

  • Global Secondary Index file paths

    • Linux: /opt/couchbase/var/lib/couchbase/data/@2i

    • Windows: C:\Program Files\couchbase\server\var\lib\couchbase\data\@2i

  • Couchbase configuration files and directory

    • Linux: /opt/couchbase/var/lib/couchbase/data

    • Windows: C:\Program Files\couchbase\server\var\lib\couchbase\data

  • Couchbase password files

    • Linux: /opt/couchbase/var/lib/couchbase/isasl.pw and /opt/couchbase/var/lib/couchbase/config/.

    • Windows: C:\Program Files\couchbase\server\var\lib\couchbase\isasl.pw and C:\Program Files\couchbase\server\var\lib\couchbase\var\lib\config\.

For more information, see the webinar provided at Understanding Database Encryption with Couchbase and Vormetric.