Skip to main content

R1soft CDP-agent deployment script

Hello,


Thanks for visiting RvKmR.blogspot.in .

In this blog, I am going to explain about my script for“Idera's R1soft CDP-agent installation ” written in bash. To understand this script you must be familiar with Bash scripting and Linux environment.

Q   : I wan to install R1soft cdp-agent on clients server, but I don't have time to execute all commands manually.  OR  I am not familiar with Linux Operating System but I have to install R1soft CDP-agent on client server.

Ans :  I have written bash script to install Idera's R1soft cdp-agent on Linux Operating System

Launch Terminal with cltr+alt+T in ubuntu or from accessories menu in other Linux OS.There are some prerequisites needed before running this script. We need to know IP address or registered hostname of R1soft cdp-server.

Below are steps to use R1soft cdp-agent deployment script:

  1. Download or copy r1soft.sh file to client/targeted server.
  2. Consider R1soft CDP-server ip address is :192.168.1.2 this can be different in your case.
  3. Now change file mode with command : chmod +x r1soft.sh
  4. Run as ./r1soft.sh or bash r1soft.sh
  5. script will ask for R1soft CDP-server ip address, enter your R1soft CDP-server ip address.
  6. script display information like OS, filesystem and kernel release of client server.
  7. As R1soft cdp-agent version 12 is not supported on filesystem XFS, please confirm firs file system is supported to r1soft cdp-agnet.
  8. After pressing "y" script installs R1soft CDP-agnet on client server.
  9. You can verify with logs in file "log" in the same directory.
  10. If script having an issue it will redirect error logs to "err" file on the same location.
You can find R1soft CDP-agent script on R1soft CDP-agent deployment script

For more help please comment it.

Thanks!!

Comments

Post a Comment

Popular posts from this blog

Wheel Users in Linux

Hello, Thanks for visiting RvKmR.blogspot.in In this blog post, I am explaining about Wheel users in Linux. Red Hat release that I am working on is as below.  [ravi@localhost vagrant]$ cat /etc/redhat-release CentOS release 6.9 (Final) An Linux system can have many users like System users, normal users, and admin (root) user. Its common sens that we have is not to share root user credentials with other user, but here is case that we wish to run administrative command by normal user. In that case we need to aware about wheel users group. Let's first understand what is wheel user in Linux and why we needed it. Wheel is one of Linux user group that allow members of that group to run administrative commands those need root access of system, Wheel user facilitate to do that with sudo (superuser do ) privileges. Lets do it on terminal : Add an user and set password [root@localhost vagrant]# useradd ravi [root@localhost vagrant]# passwd rav...

IT Infrastructure Monitoring

Hello, Thanks for visiting RvKmR.blogspot.in IT Infrastructure monitoring its not just words, it means a lot in the information technology world. I expect an IT professional knows what it means. In a simple word, I can say Compute, Application, and network, etc. OK, let's start why we need IT infrastructure monitoring. Monitoring IT infrastructure allows us to take preemptive action to be undertaken towards a potential problem before they affect your business. OR at least reduce time to restore your infrastructure as soon as an incident occurs. Further monitoring of IT infrastructure is divided into two categories Agent-based and agentless. An agent is a software or script installed on machines that to be monitored so that it will send information to monitoring systems. Having an agent inside the machine uses system resources, which in turn raises maintenance cost. Whereas the agentless tool is little or no impact on monitored machines as an agent is not installed on ...

Installing Jenkins in ubuntu

Hello, Thanks for visiting RvKmR.blogspot.in In this blog post, I am explaining about installing Jenkins in the ubunut system. Ubuntu release that I am working on is as below DISTRIB_ID=Ubuntu DISTRIB_RELEASE=17.04 DISTRIB_CODENAME=zesty DISTRIB_DESCRIPTION="Ubuntu 17.04" I will explain working on Jenkins in another post, for now, we will discuss how to install Jenkins in Ubuntu system. To run Jenkins successfully we need a web server. I am familiar with nginx, so I am going with it. Jenkins by default works on 8080 port. Install Jenkins with below command  sudo apt-get install nginx Jenkins is written in Java, so we need Java to be installed on our system. Adding repo to install jdk sudo add-apt-repository ppa : openjdk -r/ ppa sudo apt-get update Install jdk now. sudo apt-get install openjdk -8- jdk Add Jenkins key and update source list to install Jenkins. wget https://jenkins-ci.org/debian/jenkins-ci.org.key sudo apt-key add jenki...