santunez2275's Accepted Solutions

I resolved the issue I run a script in vcenter al clean all register of old vRops. it seems that they had installed a trial version before and they removed the VM. This is the script log... See more...
I resolved the issue I run a script in vcenter al clean all register of old vRops. it seems that they had installed a trial version before and they removed the VM. This is the script logfile=/var/log/rem_ngc.log echo "===================starting===================="         array1[0]="dsexporter-service-*"         array1[1]="monitoring-ui-war-*"         array1[2]="om-rsls-war-*"         array1[3]="planning-service-*"         array1[4]="vcops-api-service-*"         array1[5]="com.vmware.vcops-*"         echo "jar files to be deleted :" >> $logfile         echo " ${array1[*]}" >> $logfile         for i in "${array1[@]}"         do                 `find / -name $i > /tmp/dirs_to_rem 2> /dev/null`                 dirs=`cat /tmp/dirs_to_rem`                 echo "` date ` : deleting file : $i from location : $dirs"  >> $logfile                 echo "deleting file : $i from location : $dirs"                 rm -rf $dirs         done echo "================completed==========================" echo "check /var/log/rem_ngc.log for complete log" Thanks Sebas