View Source

{toc:location=top|maxLevel=3|minLevel=3|type=flat|separator=pipe|style=border:1}


h3. 1. Install Advanced Edition Using YUM

h4. 1.1 Configure YUM Repository

*YUM* is the easiest way to keep programs up-to-date on RedHat-compatible distributions. *YUM* downloads and installs the latest version of a program. *You should configure the YUM repository* to manage installations of and [upgrades|Upgrading Advanced Edition for Linux] to CDP Advanced Edition.

First, create a YUM {{.repo}} file with the R1Soft repository information. Save the file in the {{yum.repos.d}} directory, which is typically located in {{/etc/}}.

1. Open the new file with a text editor such as *vi* or *nano*:

{code}# cd /etc/yum.repos.d
# vi r1soft.repo{code}
or
{code}# nano -w /etc/yum.repos.d/r1soft.repo {code}

!nano-w.png!


2. Insert the following text into the file and save the file:

{code}[r1soft]
name=R1Soft Repository Server
baseurl=http://repo.r1soft.com/yum/stable/$basearch/
enabled=1
gpgcheck=0{code}


!yum-insert.png!


3. To verify what is written to the file, use the following command:

{code}#cat /etc/yum/yum.repos.d/r1soft.repo {code}

!cat.png!


h4. 1.2 Install the Package

1. With the installed *YUM repository*, you can use the following command to install the CDP Advanced Edition:

{code}# yum install r1soft-cdp-advanced-edition{code}

2. Then, enter "y" to install all the dependencies of the package.

3. Once the installations have completed, you can use the help command to list all available options:

{code}#r1soft-setup --help{code}

4. Now, proceed to [Step 3|#login].

----
h3. 2. Install Advanced Edition Manually (Using RPM)

h4. 2.1 Download CDP Advanced Edition

See [Obtaining Linux CDP Advanced Edition].

h4. 2.2 Make Sure You Can Unzip the Download

Most Linux distributions come with the *unzip* utility pre-installed. To determine if you have the *unzip* utility, run:

{code}# which unzip{code}

This should return an output similar to the following:

{code}# which unzip
/usr/bin/unzip{code}

!unzip-ad-310.png!

If it returns the following, you need to install the *unzip* utility first:

{code}unzip: Command not found.{code}

To install unzip on RHE, CentOS, and Fedora:

{code}# yum install unzip{code}

!install standard.png!

h4. 2.3 Extract the ZIP File

We recommend creating a temporary directory to which you can extract the contents of the ZIP file.

1. Use the {{mkdir}} command to create a temporary directory (in our case, {{cdp}}).

{code}# mkdir cdp{code}

2. Use the {{mv}} command to move the archive to that directory. Note that Linux file names are case-sensitive. Make sure you type the name correctly (in our case, "*cdp-advanced-edition-linux64.zip*").

{code}# mv cdp-advanced-edition-linux64.zip cdp{code}

3. Use the {{cd}} command to go to that directory.

{code}# cd cdp{code}

4. Use the {{unzip}} command to extract the files.

{code}# unzip cdp-advanced-edition-linux64.zip{code}

!adv2.png!

h4. 2.4 Install the Packages

{note:title=Notice}You must be a Linux root user to install CDP Advanced Edition.
{note}
The archive you have extracted contains two folders: one with {{.deb}} packages (in our case, "*deb-linux32*") and one with {{.rpm}} packages ("*rpm-linux32*"). If you are installing on RedHat and CentOS, select the {{.rpm}} package.

Each folder contains a set of CDP components:

* {{r1soft-cdp-advanced-edition}}
* {{r1soft-setup}}
* {{r1soft-cdp-agent}}
* {{r1soft-cdp-async-agent-2-6}}
* {{r1soft-cdp-server}}


You will need to install all of them in one step. Use the {{cd}} command to go to the folder with the packages (in our case, {{deb-linux32}}) and run the following command:

*RPM 32-bit (x86)*

{code}# rpm -i .rpm{code}


!adv3.png!


----
h3. {anchor:login}3. Configure and Start the CDP Server Web-based User Interface

1. You must *define a username and password* for the CDP Server Web Interface before you can begin using CDP Advanced Edition.

{code}# r1soft-setup --user DESIRED_USERNAME --pass DESIRED_PASSWORD{code}

Example:
{code}# r1soft-setup --user admin --pass r1soft{code}

After running this command, you will see an output similar to the following:

{code}Server username and password set
The R1Soft CDP Server must be restarted for these changes to take effect
Use '/etc/init.d/cdp-server restart' to restart.{code}

!setup-ad-310.png!

2. *Configure ports*, if necessary.

By default, the embedded web server in CDP Advanced Edition required for the Web-based Interface will listen on TCP ports 80 (HTTP) and 443 (HTTPS). These ports are frequently used by your Linux server (e.g., by Apache). If you are already using ports 80 and 443, you will need to define different ports. Ports 8080 (HTTP) and 8443 (HTTPS) are recommended alternatives to standard 80 and 443. However, you can choose any other valid and unused TCP port.

{code}# r1soft-setup --http-port 8080 --https-port 8443{code}

!http-ad-310.png!

3. *Start the Web Interface* (CDP Server):

{code}/etc/init.d/cdp-server restart{code}

!restart-ad-310.png!
{info:title=Note}You may need to change the firewall rules, depending on where you are connecting to the Web Interface from.
{info}
You should now be able to connect to the CDP Advanced Edition Web Interface using Firefox or Internet Explorer.

----
h3. 4. Install CDP Linux Device Driver

CDP Device Driver is a proprietary, loadable Linux kernel module distributed by R1Soft. It is loadable at run-time without restarting Linux, and you do *not* need to recompile your Linux kernel to use it. R1Soft does not provide prebuilt modules for the popular kernels anymore, so you will have to compile the module from source.

{note:title=Notice}You need to have loadable modules enabled as a feature in your kernel, and this is standard on all popular Linux distributions.
{note}

h4. 4.1 Compiling CDP Kernel Module Against Kernel Headers or Kernel Source Tree

Using a pre-built binary module package is not possible anymore. You will have to compile this module against kernel headers or a kernel source tree. We are not always able to compile kernel modules from kernel-devel packages supplied by most major Linux distributions. In some cases, packages are missing header files (broken), or the packages have been stripped of information that any device driver would need to compile a kernel module. In these cases, we can build using your installed kernel-devel package on your Linux server, as r1soft-setup will obtain the missing information it needs to compile a module from your running kernel.

In order for kernel module compilation to work, you should have Internet connectivity directly from the Linux server you are installing CDP on, to TCP port HTTPS (443), on the host krnlbld.r1soft.com.


You can test connectivity with the following command (this may take a minute):

{code}# r1soft-setup --test-connection{code}


h4. 4.2 Install Kernel Sources

If you are using an unmodified kernel provided by CentOS installer, install the kernel-devel package:

{code}# yum install kernel-devel{code}

!install-kernel.png|border=1!

h4. 4.3 Verify that the Source Matches Your Running Kernel

Sometimes, the kernel-devel package is newer than the installed and running kernel. If the kernel-devel is too old and not found, please follow the instructions on how to setup access to older yum packages as documented [here|kb3:Finding Old kernel-devel Packages For CentOS].

h4. 4.4 Build the CDP Kernel Module Online (direct Internet connection to R1Soft build server)


To attempt to build the kernel module, run the following command (this may take several minutes):

{code}# r1soft-setup --get-module
{code}

!install standard 209.png!

If module has been compiled and installed successfully, you will see an output similar to the following:

{code}Saving kernel module to '/lib/modules/r1soft/hcpdriver-cki-2.6.32-220.4.1.el6.x86_64.ko'
Kernel module is now installed.
Use '/etc/init.d/cdp-agent restart' to load the new driver
{code}


h4. 4.5 Build the CDP Kernel Module Offline (without direct Internet connection to R1Soft build server)

If there is no direct Internet connection between your CDP server and R1Soft build server, it is still possible to compile the kernel module. In this case, this will be tree-step process. First, you will have to create tarball file with the kernel headers. When you should copy this tarball file from the server to some other computer which has Internet connection to R1Soft build server. From this computer you should upload the tarball to the R1Soft build server and wait for the compilation to finish. When it is finished, you should download binary module and copy it back to the CDP server. Start with executing the following command:

{code}# r1soft-setup --no-binary --kernel-dir /usr/src/kernels/YOUR_KERNEL_TREE
--tarball-only /tmp/kernel-headers-for-r1soft.tar.gz{code}

After running this command, you will see:

{code}# r1soft-setup --no-binary --kernel-dir /usr/src/kernels/2.6.32-220.4.1.el6.x86_64
--tarball-only /tmp/kernel-headers-for-r1soft.tar.gz
Gathering kernel information
Gathering kernel information complete.
Creating kernel headers package
Checking '/usr/src/kernels/2.6.32-220.4.1.el6.x86_64' for kernel headers
Found headers in '/usr/src/kernels/2.6.32-220.4.1.el6.x86_64'
Compressing...
Header package created '/tmp/kernel-headers-for-r1soft.tar.gz'
visit https://krnlbld.r1soft.com/ to do an offline module build
After it is complete, you will need to copy the module to /lib/modules/r1soft{code}

!adv14.png!

h4. 4.6 Last Step

* Copy the generated {{tar.gz}} file and paste it to a computer with Internet access.
* Go to [https://krnlbld.r1soft.com/] and upload the {{.tar.gz}} file to build a kernel module.
* After the build, you will download a kernel module.
* Copy this module and paste it to your Linux Server and the folder {{/lib/modules/r1soft.}}
* Restart the Agent ({{/etc/init.d/cdp-agent restart}}).
----
h3. Next Steps

* [Accessing Advanced Edition Web Interface]
* [Logging in to CDP Server]
* [Activating CDP Advanced Edition]


{excerpt:hidden=true}Instructions on how to install CDP 4.0 Advanced Edition on CentOS, RHE, and Fedora. {excerpt}