- 服务器软硬件要求
- 硬件要求
- 受支持的操作系统
- 软件要求
- Linux 系统要求
- 配置主机名
- 配置主机名IP地址映射
- 关闭防火墙 (需要管理员权限)
- SELinux 配置
- Linux 系统要求
服务器软硬件要求
在安装 SequoiaDB 产品之前,请确保您选择的系统满足必须的操作系统,硬件,通信,磁盘和内存的要求。
硬件要求
需求项 | 要求 | 建议 |
---|---|---|
CPU | - x86(Intel Pentium、Intel Xeon 和 AMD)32位 Intel 和 AMD 处理器- x64(64位 AMD64 和 Intel EM64T 处理器) - PowerPC 7 或者 PowerPC 7+ 处理器 | 建议采用 X64(64 位 AMD64 和 Intel EM64T 处理器 )或者 PowerPC 处理器 |
磁盘 | 至少 20GB 空间 | 建议大于 100GB 磁盘空间 |
内存 | 至少 1GB | 大于 2GB 物理内存 |
网卡 | 配备至少 1 张网卡 | 建议至少配置 1Gb 网卡 |
受支持的操作系统
系统类型 | 系统列表 |
---|---|
Linux | - Red Hat Enterprise Linux (RHEL) 6 - Red Hat Enterprise Linux (RHEL) 7 - SUSE Linux Enterprise Server (SLES) 11 Service Pack 1 - SUSE Linux Enterprise Server (SLES) 11 Service Pack 2 - SUSE Linux Enterprise Server (SLES) 12 Service Pack 1 - Ubuntu 12.x - Ubuntu 14.x - Ubuntu 16.x - CentOS 6.x - CentOS 7.x |
注意:未在上述列表中列举的 Linux 操作系统并不代表不能用于安装 SequoiaDB。当将这些 Linux 操作系统应用于生产环境时,建议联系 SequoiaDB 技术支持,以获得更详细的信息。
软件要求
Linux 系统要求
在安装 SequoiaDB 之前,应该先对 Linux 系统相关的配置进行检查和设置。需要检查和设置的配置包括:
配置主机名
配置主机名/IP地址映射
配置防火墙
配置主机名
配置方法
对于SUSE:
- 使用 root 权限登陆,执行 hostname sdbserver1 (sdbserver1为主机名称,可根据需要修改。);
- $ hostname sdbserver1
-
打开 /etc/HOSTNAME 文件;
- $ vi /etc/HOSTNAME
-
修改文件内容,配置为主机名称 sdbserver1 (主机名称);
- sdbserver1
-
按 : wq 保存退出;
对于 RedHat:
- 使用 root 权限登陆,执行 hostname sdbserver1 (sdbserver1为主机名称,可根据需要修改。);
- $ hostname sdbserver1
-
RedHat7 以下的系统,打开 /etc/sysconfig/network 文件;
- $ vi /etc/sysconfig/network
如果是 RedHat7 系统,则打开 /etc/hostname 文件:
- $ vi /etc/hostname
- 将 HOSTNAME 一行修改为 HOSTNAME = sdbserver1 (其中sdbserver1 为新主机名);
- HOSTNAME = sdbserver1
按 : wq 保存退出;
对于 Ubuntu:
- 使用 root 权限登陆,执行 hostname sdbserver1 (sdbserver1为主机名称,可根据需要修改。);
- $ hostname sdbserver1
-
打开 /etc/hostname 文件;
- $ vi /etc/hostname
-
修改文件内容,配置为主机名称: sdbserver1
- sdbserver1
-
按 : wq 保存退出;
- 验证方法执行 hostname 命令,确认打印信息是否为 “sdbserver1”
- $ hostname
配置主机名IP地址映射
配置方法
- 使用 root 权限,打开 /etc/hosts 文件
- $ vi /etc/hosts
- 修改 /etc/hosts ,将服务器节点的主机名与IP映射关系配置到该文件中
- 192.168.20.200 sdbserver1
- 192.168.20.201 sdbserver2
- 192.168.20.202 sdbserver3
- 保存退出
验证方法
- ping sdbserver1(本机主机名) 可以 ping 通
- $ ping sdbserver1
- ping sdbserver2(远端主机名) 可以 ping 通
- $ ping sdbserver2
关闭防火墙 (需要管理员权限)
配置方法
- 对于 SUSE:
执行如下命令
- $ SuSEfirewall2 stop
- $ chkconfig SuSEfirewall2_init off
- $ chkconfig SuSEfirewall2_setup off
- 对于 RedHat:
执行如下命令
- $ service iptables stop
- $ chkconfig iptables off
- 对于 Ubuntu:
执行如下命令
- $ ufw disable
验证方法
- 对于 SUSE
- $ chkconfig -list | grep fire
- 对于 RedHat:
- $ service iptables status
- 对于 Ubuntu:
- $ ufw status
Note:1. 以上“配置主机名”、“配置主机名/IP地址映射”和“配置防火墙”这几个步骤都需要在每台作为数据库服务器的机器上配置;2. 社区版要求系统安装glibc 2.15以及libstdc++ 6.0.18以上版本。
SELinux 配置
针对 SELinux 可以配置为关闭或者将模式调整成 permissive,建议关闭 SELinux。
关闭 SELinux
- 配置方法
- 使用 root 权限,打开 /etc/selinux/config 文件
- $ vi /etc/selinux/config
- 将 SELINUX 调整成 disabled
- # This file controls the state of SELinux on the system.
- # SELINUX= can take one of these three values:
- # enforcing - SELinux security policy is enforced.
- # permissive - SELinux prints warnings instead of enforcing.
- # disabled - No SELinux policy is loaded.
- SELINUX=disabled
- # SELINUX=enforcing
- # SELINUXTYPE= can take one of three two values:
- # targeted - Targeted processes are protected,
- # minimum - Modification of targeted policy. Only selected processes are protected.
- # mls - Multi Level Security protection.
- SELINUXTYPE=targeted
- 重启操作系统
- $ reboot # 需要重启系统
- 验证方法
- $ sestatus
- SELinux status: disabled
模式设置成 permissive
- 配置方法
- 使用 root 权限,执行命令 setenforce 0 ; 打开 /etc/selinux/config 文件
- $ setenforce 0
- $ vi /etc/selinux/config
- 调整 SELINUX 的值为 permissive
- # This file controls the state of SELinux on the system.
- # SELINUX= can take one of these three values:
- # enforcing - SELinux security policy is enforced.
- # permissive - SELinux prints warnings instead of enforcing.
- # disabled - No SELinux policy is loaded.
- SELINUX=permissive
- # SELINUX=enforcing
- # SELINUXTYPE= can take one of three two values:
- # targeted - Targeted processes are protected,
- # minimum - Modification of targeted policy. Only selected processes are protected.
- # mls - Multi Level Security protection.
- SELINUXTYPE=targeted
- 验证方法
- $ sestatus
- SELinux status: enabled
- SELinuxfs mount: /sys/fs/selinux
- SELinux root directory: /etc/selinux
- Loaded policy name: targeted
- Current mode: permissive
- Mode from config file: permissive
- Policy MLS status: enabled
- Policy deny_unknown status: allowed
- Max kernel policy version: 28