Pages

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...