#%$ If running a clustered environment, changes must be made on both primary and minions #%$
- Edit /etc/hosts
- Comment out the line ::1 localhost
#::1 localhost
- Edit /etc/cb/cb.conf
- Change the line for CoreServicesIP to
CoreServicesIP="0.0.0.0"
LiveResponseIP=127.0.0.1
WebsocketBindHost=127.0.0.1
- For 6.1 and above, add the line
SensorServicesIP=0.0.0.0
- Edit /etc/cb/nginx/conf.d/cb.conf
- Comment out listen [::]:80 ipv6only=off;
#listen [::]:80 ipv6only=off;
- Change listen [::]:443 ssl ipv6only=off; to
listen 0.0.0.0:443 ssl;
- In 5.2 and above, comment out the line listen [::]:80 ipv6only=off; in /etc/cb/nginx/conf.d/http.conf
#listen [::]:80 ipv6only=off;
- In 6.4.0 and above with TLS Certificate Management enabled, change the /var/cb/nginx/vhosts/*.conf file (example: server_1.conf)
NOTE: To avoid this problem in the future, add this line to /etc/cb.conf, and restart CB services:
NginxVhostsAddress=0.0.0.0
- Change listen [::]:443; to
listen 0.0.0.0:443 ssl;
- Restart Services - https://community.carbonblack.com/t5/Knowledge-Base/Cb-Response-How-to-restart-server-services/ta-p/41294