防火墙设置
为了确保Vastbase在防火墙开启的状态下能够正常使用,您需要开放数据库监听端口或者将Vastbase相关的服务、协议、IP和端口添加到各主机的防火墙白名单中。添加方法如下:
步骤1 以root用户登录操作系统。
步骤2 关闭防火墙和SELinux。
执行如下命令关闭防火墙。
systemctl status firewalld.service systemctl stop firewalld.service systemctl disable firewalld
执行如下命令关闭SELinux。
#查看SELinux是否关闭(diabled表示关闭;enforcing表示开启) getenforce #临时关闭 setenforce 0
步骤3 执行vi /etc/hosts
命令,修改hosts文件,添加实际的IP地址和主机名。
IP地址 主机名
注:如果您想永久关闭SELinux,可参考如下方法:
1、vim /etc/selinux/config
2、将SELINUX=enforcing修改为SELINUX=disabled
3、重启系统reboot