compared with
Key
This line was removed.
This word was removed. This word was added.
This line was added.

Changes (19)

View Page History
{page-title}
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.
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:

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).

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 a root shell and stop the cdp-agent service.
{code}
# /etc/init.d/buagent /etc/init.d/cdp-agent stop
{code}
or
{code}
# service buagent cdp-agent stop
{code}
2. Edit {color:blue}/etc/init.d/buagent{color} using your favorite editor, and change the contents of the line
2. Create the empty file /usr/sbin/r1soft/.recovery-mode
{code}
BUAGENT_OPTS=""
touch /usr/sbin/r1soft/.recovery-mode
{code}
to
{code}
BUAGENT_OPTS="-r"
{code}
as shown:

!ScreenshotL27.png|align=left!\\

\\
3. And last, save the {color:blue}/etc/init.d/buagent{color} file, and restart the agent service.
3. Start the agent.
\\
{code}
# /etc/init.d/buagent /etc/init.d/cdp-agent start
{code}
or
{code}
# service buagent cdp-agent start
{code}
This will successfully place the Linux R1Soft Agent into recovery mode.
Agent will start in recovery mode.
\\
\\