第 2 章 初始 LVS 配置
安装Red Hat Enterprise Linux 后,您必须执行一些基本操作步骤来设置 LVS 路由器和真实服务器(real server)。本章对这些初始化步骤进行了详细的论述。
注意
当启动群集后,LVS 路由器节点就成为活跃节点,也叫主节点。在配置 LVS 时,请使用主节点中的 Piranha Configuration Tool。
2.1. 在 LVS 路由器中配置服务
Red Hat Enterprise Linux 安装程序会安装所有设置 LVS 所需要的组件,但必须在配置群集前激活正确的服务。请为两个 LVS 路由器在引导时启动正确的服务。Red Hat Enterprise Linux 中有三个主要的工具可用来将服务设置为在引导时激活,它们是命令行程序
chkconfig
、ncurses-based 程序 ntsysv
和图形界面程序 Services Configuration Tool。这些工具都要求有根访问才可以使用。
注意
要获得根访问权限,请在 shell 提示符后输入
su -
命令和根密码。例如:
$ su - root password
在 LVS 路由器中,需要将三个服务设置为在引导时激活:
piranha-gui
服务(只用于主节点)pulse
服务sshd
服务
如果您正在群集多端口服务或者正在使用防火墙标记,您还必须启用
iptables
服务。
最好是将这些服务设置为在运行级别 3 和运行级别 5 都激活。要达到此目的,请使用
chkconfig
,并为每个服务输入以下命令:
/sbin/chkconfig --level 35 daemon on
在上面的命令中,请使用您想要激活的服务名称替换 daemon。要获得系统中的服务及在什么运行级别将其设定为激活的列表,请使用以下命令:
/sbin/chkconfig --list
警告
Turning any of the above services on using
chkconfig
does not actually start the daemon. To do this use the /sbin/service
command. See 第 2.3 节 “启动 Piranha Configuration Tool服务” for an example of how to use the /sbin/service
command.
For more information on runlevels and configuring services with
ntsysv
and the Services Configuration Tool, refer to the chapter titled "Controlling Access to Services" in the Red Hat Enterprise Linux System Administration Guide.