Thursday, May 30, 2013

Netbackup VMWare Backup over SAN

When we configure VMWare backup over SAN we need to make sure the Datastore LUNs are also visible in the Media server.

Before provision the Datastore LUN to the Media server automount should be disabled and Scrubed in the media server as below.

image

automount disable: Prevents Windows from automatically mounting any new basic and dynamic volumes that are added to the system.

automount scrub:Removes volume mount point directories and registry settings for volumes that are no longer in the system. This prevents volumes that were previously in the system from being automatically mounted and given their former volume mount point(s) when they are added back to the system.

Thursday, May 16, 2013

IE 10 Crashing Faulting application name: IEXPLORE.EXE, version: 10.0.9200.16537, time stamp: 0x512347f7

To fix this issue follow below

 

go to start run type inetcpl.cpl

go to advanced - check box for "Use Software rendering instead of GPU rendering"

image

Reopen IE

If this doesn't fix your problem then follow below KB

http://support.microsoft.com/kb/923737

Tuesday, January 22, 2013

Set java_home in windows

Use below command to set JAVA_HOME in windows

set JAVA_HOME="C:\Program Files\Java\jdk1.7.0_11"

Also we can set it under System Properties-Environment Variables as below

 

image

Monday, January 21, 2013

CommVault Exchange Mailbox level backup

Pre-requisites

Install Outlook(MAPI Client) on Exchange Server

Create the Mail Box enabled user with full Exchange permission

Install the Exchange Mail Box IDA

image

You need to give the mail box enabled user created with full Exchange permission details  to create a profile

image

Discover the mail box from the Commcell Console

image

Thursday, January 17, 2013

Clariion- host under ~management Storage Group

Today I have noticed that 2 of my SAN paths are missing in the host, I logged in to my Clariion, checked the Host Connectivity status and found 2 of my initiators are under ~management storage group.

image

I went to Engineering mode by pressing Ctrl,Shft, and F12 and entering the password messner

Then Selected Hosts Tab from the propertied of my Storage Group, there Advanced menu was visible

image

On Advanced menu  I noticed 2 initiators was unchecked. I checked all of them and clicked on OK.

image

After this all of my 4 paths were back to active.

Monday, January 14, 2013

Solaris 11 SSH direct root login access

This will be helpful for those wants to have direct root login locally and via SSH

Comment out the “CONSOLE=/dev/console” line in /etc/default/login.

image

Modify PermitRootLogin to yes in /etc/ssh/sshd_config

image

Remove “:type=role” from the root entry in /etc/user_attr

Remove highlighted part

image

image

Wednesday, January 9, 2013

MySQL Basic Hardening

Below are the basic hardening steps

1.Get rid of the test database, which is accessible to everyone.

mysql> drop database test;

2. Remove anonymous users

mysql> use mysql;

mysql> delete from db;

mysql> delete from user where not (host="localhost" and user="root");

mysql> flush privileges;

image

3. Change root Password

By default root password in empty

mysql> SET PASSWORD FOR root@localhost=PASSWORD(' New_Password');

image

4. Stop and Stat MySQL

image