...
After the DRX Configuration File is created, it is ready to start replication. You can start replication by starting (up) the replication resource with the following commands.
Startup of resources provides a way to start all resources in the configuration file at once with control over the DRX services already prepared during installation or individually through a command-type utility. The following is a description of this
5.1. Service Control
Control of a service depends on the service control commands provided by the OS. The following service control commands were described OS-separated.
5.1.1. Service Startup
Code Block | ||
---|---|---|
| ||
c:\>sc start drxsvc |
...
Code Block | ||
---|---|---|
| ||
# Centos7 [root@node1 ~]# systemctl start drxsvc # Centos6 [root@node1 ~]# service drxsvc start |
5.1.2. Service stop
Code Block | ||
---|---|---|
| ||
c:\>sc stop drxsvc |
...
Code Block | ||
---|---|---|
| ||
# Centos7 [root@node1 ~]# systemctl stop drxsvc # Centos6 [root@node1 ~]# service drxsvc stop |
5.1.3 와치독
DRX 서비스는 DRX 프로세스에 대한 관리를 위해 DRX 와치독을 내장합니다. 와치독은 DRX 프로세스의 이상 종료를 감지할 경우 DRX를 재 기동 시키는 역할을 하고 다음과 같은 상황에서 동작합니다.
...
DRX 프로세스가 일반적인 상황에서 종료되면 와치독에 의해서 자동 재기동되기 때문에 DRX 프로세스를 완전히 종료시키기 위해선 DRX 서비스 중지를 통해 종료해야 합니다.
5.2. 리소스 제어
리소스를 개별적으로 제어하려면 drx-ctl 의 up/down 명령을 이용해야 합니다. drx-ctl 의 all 옵션을 통해 모든 리소스의 기동/중지를 수행할 수도 있습니다.
Info |
---|
|
5.2.1. 리소스 기동
Info | ||
---|---|---|
| ||
drx-ctl up [resource or all] |
5.2.2. 리소스 중지
Info | ||
---|---|---|
| ||
drx-ctl down [resource or all] |
5.3. 설정 제어
DRX의 설정은 구성파일의 내용을 변경하거나 drx-ctl set 명령을 통해 변경할 수 있습니다.
5.3.1. 정적 설정 변경
구성파일의 내용을 변경하고 리소스를 재시작하여 적용하는 방식을 정적 설정 변경 방식이라고 합니다.
5.3.2. 동적 설정 변경
drx-ctl set 명령을 통해 운영중에 실시간 설정을 변경하는 방식을 동적 설정 변경 방식이라고 합니다. set 명령의 설정은 실제 리소스 구성파일의 내용에 반영되지 않으며 임시설정의 의미를 가집니다. 다음은 bwlimit 의 동적설정 예시 입니다.
...