Pages

Thursday, December 20, 2012

SQL1042C - hostname changed on db2 server windows/unix

1.       Run the following commands: ·         db2admin stop ·         db2stop 2.       The same hostname will be repeated twice on a single line in the db2nodes.cfg file.  *Note that, only DB2 ESE has a db2nodes.cfg file. If you are running other editions (WorkGroup Server, or Personal Edition) then you can skip this step and go to 3rd...

Friday, November 23, 2012

My laptop starts automatically from hibernation and drains battery windows 7

My laptop starts automatically from hibernation and drains battery - windows 7 Open Device Manager by clicking the Start button Click on Control Panel, here click on System and Security Under System, click on Device Manager.‌ If you're prompted for an administrator password or confirmation, type the password or provide confirmation. In the list of hardware categories, find the device that you want to...

Thursday, November 1, 2012

How to use SCP command ?

Copying files using SCP command: SCP ~ Secure Copy, which is used for copying files between local to remote or remote to local or remote to remote. These transfers are based on SSH ~ Secure Shell protocol SCP options: -p     preserves the modification and access times, as well as the permissions of the source-file in the destination-file -P     port, specify only if it is other than the default port 22 -q     does not display the progress bar -r    ...

Tuesday, October 23, 2012

Outlook 2007 - Restore or copy "AutoComplete suggest names" feature to another pc.

The AutoComplete suggest names are saved as Outlook.NK2 and you can copy that file from your old computer to new one.              On old computer, please follow the steps: o   If it is Microsoft Windows XP: §  Click Start, and then click My Computer, §  On the Tools menu, click Folder Options, §  Click the View tab, and then, §  under Advanced settings, §  under Hidden files and folders, §  Click Show hidden...

Friday, August 3, 2012

Download & Installing " OSGi JPA " Feature Pack using Installation Manager on WAS 7.0

Installing OSGi and JPA Fix Pack 1.0.0.1 Feature Pack using Installation Manager and Augmenting the Profile. Download WAS import software to enable import option on installation manager-                                        http://public.dhe.ibm.com/software/websphere/downloads/was/import/  Download required OSGI...

Wednesday, August 1, 2012

Oracle sql developer - " Unable to find Java Virtual Machine ... "

After successful installation of Oracle 64 bit, When we try to open sql developer ( sqldeveloper.exe) , it ends up with the following error message: "Unable to find Java Virtual Machine. To point to a location of a Java Virtual Machine, please refer to the Oracle Install Guide(java\install.html)." Issue Resolved: I found that the Oracle - SQL developer is NOT supported on 64 bit JDK. Hence I...

Sunday, July 15, 2012

pinging but not connecting with putty ssh

ssh service is not running try to start it if not install it. # apt-get install openssh-server Suggestions are always welcome..!  Without signing also you can send your commen...

Friday, July 13, 2012

Cannot ping by hostname in ubuntu

Install samba it will work. If its already there then remove it. For installing:            :~# apt-get install samba  For removing:            :~# apt-get remove samba Suggestions are always welcome..!  Without signing also you can send your commen...

Friday, July 6, 2012

Blogger: In home page, How to display only first few lines of the post with an option " Read More "

Login to your Blogger Go To Template Then Click On “Edit HTML” Check Mark  “Expand Widget Templates” Press Ctrl+F and search for this line   </head> Now, copy below script and paste it above the </head> tag: <script type='text/javascript'><!--//--><![CDATA[//><!-- function removeHtmlTag(strx,chop){     if(strx.indexOf("<")!=-1)     {         var s = strx.split("<");         ...

Thursday, July 5, 2012

Subversion configuration in windows

Subversion configuration in windows To create the repository, issue the following command: svnadmin create c:/svnrepos Create your SVN user: Now that your repository is successfully set up, you'll need to create an svn user.  Simply open the file c:/svnrepos/conf/svnserve.conf of your choice and add the following: anon-access = none auth-access = write password-db = passwd Now you'll need to create a password file: Open...

Wednesday, July 4, 2012

Creating WAS profiles using manageprofiles.sh command

Create a deployment manager profile The following example creates a deployment manager profile: ./manageprofiles.sh -create -profileName dmgr01 -profilePath /opt/IBM/Websphere/Appserver/profiles/dmgr01 -templatePath /opt/IBM/Websphere/Appserver/profileTemplates/dmgr -hostName 192.168.1.50 -nodeName dmgr01node01 -cellName cell01 Issue the following parameters: -create Creates a profile. (Required) -templatePath template_path Specifies the file path to the template. (Required) Use the following format: -templatePath...