Monday, October 26, 2015

Cleanup Commvault Simpana agent on Linux

# ps -ef | grep simpana

# simpana list

                       *** Instance001, srv-commserve ***
+-----------+---------+--------------------------------------------------------+
| Service   |   PID   | Service command                                        |
+-----------+---------+--------------------------------------------------------+
| cvlaunchd | 3024    | /opt/simpana/Base/cvlaunchd                            |
+-----------+---------+--------------------------------------------------------+
| cvd       | 3025    | /opt/simpana/Base/cvd                                  |
+-----------+---------+--------------------------------------------------------+
| EvMgrC    | 3026    | /opt/simpana/Base/EvMgrC                               |
+-----------+---------+--------------------------------------------------------+

# simpana stop
Stopping Simpana services for Instance001 ...

# rm -rf /opt/simpana
# rm -rf /opt/seed
# rm -rf /opt/7892

# rm -rf /etc/CommVaultRegistry /etc/gxsetup_guid

# rm -rf /var/log/simpana* /var/log/.gxsetup

Tuesday, April 28, 2015

[SOLVED] ArcServe 16.5 backup agent required libstdc++-libc6.1-1.so.2 on OEL 6.6

[root@lintest6 arcserve_16_5_1]# ./install
2. CA ARCserve Backup for Linux Client Agent                             (ABagntux)

The components you selected require this library file:
libstdc++-libc6.1-1.so.2.  Typically, Linux comes with this library
file. It is located in the /usr/lib path.  Before you rerun the
installation, install the file.

FIX:
[root@lintest6 arcserve_16_5_1]# yum list | grep compat-libstdc
compat-libstdc++-33.i686             3.2.3-69.el6             @public_ol6_latest
compat-libstdc++-296.i686            2.96-144.el6             public_ol6_latest
compat-libstdc++-33.x86_64           3.2.3-69.el6             public_ol6_latest

[root@lintest6 arcserve_16_5_1]# yum -y install compat-libstdc++-33.i686

and start the installer again!