|
Key
This line was removed.
This word was removed. This word was added.
This line was added.
|
Changes (21)
View Page History{page-title}
Sometimes it is required that CDP agent is started in 'recovery mode'. In this mode data restore is performed by the executable binary only. Installation of kernel module is not required. Recovery mode is used mostly for Bare-Metal restore. So there is usually no need to activate this mode on Windows machine, only on Linux. To start the agent in recovery mode perform the following steps:
When restoring files to an alternate host, the receiving machine must have a CDPAgent installed, and be placed into 'recovery mode'.
This is a mode of operation that uses only the executable binary for receiving data, and does not require a module or driver to be installed.
This is a mode of operation that uses only the executable binary for receiving data, and does not require a module or driver to be installed.
On a Windows machine, this is accomplished using the options available inside the R1Soft Windows Agent service properties.
On a Linux machine, this is handled thru editing the init script. ( Which is a link to {color:blue}/usr/bin/buagentctl{color}, by default).
On a Linux machine, this is handled thru editing the init script. ( Which is a link to {color:blue}/usr/bin/buagentctl{color}, by default).
1. Open a root shell and stop the cdp-agent service.
h3. Windows
1. Open the Services window, highlight the R1Soft Windows Agent, and right-click to select "Properties".
!S1b.png|align=left!\\
2. Stop the running R1Soft Windows Agent service by clicking on "Stop".
!S2b.png|align=left!\\
3. Add the text " \-r " (without quotes) to the field labeled "Start parameters".
!S3b.png|align=left!\\
4. And last, click on "Start" to restart the R1Soft Windows Agent service.
!S4b.png|align=left!\\
This will successfully place the Windows R1Soft Agent into recovery mode.
\\
\\
\\
h3. Linux
1. Open a shell, and stop the buagent service.
1. Open the Services window, highlight the R1Soft Windows Agent, and right-click to select "Properties".
!S1b.png|align=left!\\
2. Stop the running R1Soft Windows Agent service by clicking on "Stop".
!S2b.png|align=left!\\
3. Add the text " \-r " (without quotes) to the field labeled "Start parameters".
!S3b.png|align=left!\\
4. And last, click on "Start" to restart the R1Soft Windows Agent service.
!S4b.png|align=left!\\
This will successfully place the Windows R1Soft Agent into recovery mode.
\\
\\
\\
h3. Linux
1. Open a shell, and stop the buagent service.
{code}
# /etc/init.d/cdp-agent /etc/init.d/buagent stop
{code}
or
# service buagent stop
{code}
# service cdp-agent stop
2. Edit {color:blue}/etc/init.d/buagent{color} using your favorite editor, and change the contents of the line
{code}
2. Create the empty file /usr/sbin/r1soft/.recovery-mode
BUAGENT_OPTS=""
to
BUAGENT_OPTS="-r"
to
BUAGENT_OPTS="-r"
{code}
touch /usr/sbin/r1soft/.recovery-mode
{code}
{code}
as shown:
!ScreenshotL27.png|align=left!\\
\\
\\
3. Start the agent.
3. And last, save the {color:blue}/etc/init.d/buagent{color} file, and restart the agent service.
\\
{code}
{code}
# /etc/init.d/cdp-agent /etc/init.d/buagent start
{code}
or
# service buagent start
{code}
# service cdp-agent start
{code}
Agent will start in recovery mode.
{code}
Agent will start in recovery mode.
This will successfully place the Linux R1Soft Agent into recovery mode.
\\
\\
\\