Hello;
I have just installed “Couchbase Server " to RHEL 8.2. The package version is
“couchbase-server-6.6.1-9213.x86_64”.
I have checked whether the Couchbase Server” is running or not as below.
[root@shiina ~]# systemctl | grep -i couch
couchbase-server.service loaded active running Couchbase Server
[root@shiina ~]#
It works.
I have checked the port of 8091 as below.
[root@shiina ~]# netstat -apn | grep 8091
tcp 0 0 0.0.0.0:18091 0.0.0.0:* LISTEN 2094/beam.smp
tcp 0 0 0.0.0.0:8091 0.0.0.0:* LISTEN 2094/beam.smp
tcp 0 0 127.0.0.1:52026 127.0.0.1:8091 ESTABLISHED 2458/goxdcr
tcp 0 0 127.0.0.1:8091 127.0.0.1:52030 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:8091 127.0.0.1:52026 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:52030 127.0.0.1:8091 ESTABLISHED 2458/goxdcr
tcp 0 0 127.0.0.1:8091 127.0.0.1:52016 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:52018 127.0.0.1:8091 ESTABLISHED 2458/goxdcr
tcp 0 0 127.0.0.1:8091 127.0.0.1:52024 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:52024 127.0.0.1:8091 ESTABLISHED 2458/goxdcr
tcp 0 0 127.0.0.1:8091 127.0.0.1:52028 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:52028 127.0.0.1:8091 ESTABLISHED 2458/goxdcr
tcp 0 0 127.0.0.1:8091 127.0.0.1:52018 ESTABLISHED 2094/beam.smp
tcp 0 0 127.0.0.1:52016 127.0.0.1:8091 ESTABLISHED 2446/saslauthd-port
tcp6 0 0 :::18091 :::* LISTEN 2094/beam.smp
tcp6 0 0 :::8091 :::* LISTEN 2094/beam.smp
[root@shiina ~]#
However, I could not connect to Web Console.
In addition to this, I have tried to use “cbworkloadgen” utility to test my server.
[root@shiina ~]# /opt/couchbase/bin/cbworkloadgen -n 10.0.0.127:8091
Traceback (most recent call last):
File "/opt/couchbase/lib/python/cbworkloadgen", line 8, in <module>
import pump_transfer
File "/opt/couchbase/lib/python/pump_transfer.py", line 15, in <module>
import pump
File "/opt/couchbase/lib/python/pump.py", line 29, in <module>
import snappy # pylint: disable=import-error
ModuleNotFoundError: No module named 'snappy'
It gives Snappy error as above. However, I have the packages as below.
[root@shiina ~]# rpm -aq | grep snap
snapd-2.47.1-1.el8.x86_64
snappy-1.1.8-3.el8.x86_64
snap-confine-2.47.1-1.el8.x86_64
snapd-selinux-2.47.1-1.el8.noarch
[root@shiina ~]#
So, I need your help to find the cause of those problems.
Best regards;