Posts

Showing posts from June, 2015

IMPORTANT UNIX COMMANDS FOR WEBSPHERE

1. tar command examples Create a new tar archive. $ tar cvf archive_name.tar dirname/ Extract from an existing tar archive. $ tar xvf archive_name.tar View an existing tar archive. $ tar tvf archive_name.tar   2. grep command examples Search for a given string in a file (case in-sensitive search). $ grep -i "the" demo_file Print the matched line, along with the 3 lines after it. $ grep -A 3 -i "example" demo_text Search for a given string in all files recursively $ grep -r "ramesh" * 3. find command examples Find files using file-name ( case in-sensitve find) # find -iname "MyCProgram.c" Execute commands on files found by the find command $ find -iname "MyCProgram.c" -exec md5sum {} \; Find all empty files in home directory # find ~ -empty 4)ls command examples Display filesize in human readable format (e.g. KB, MB etc.,) $ ls -lh -rw-r----- 1 ramesh team-dev 8.9M Jun 12 15:27...

WEBSPHERE INTERVIEW QUESTIONS COVERING ALL TOPICS

Interview questions and also find the realtime usage commands link at the end of the blog. Which will be helpful during the interview. In a Web-based architecture, if you try to hit the URL, it shows an error like page cannot be displayed, How to troubleshoot this issue? Ans: The Flow of Request happens from Load Balancer >> Webserver >> Appserver >> DBso the investigation for such issues should also follow the same routes .. ( well thats how i follow ) Try to check if the url is responding from your end. (This will eliminate if its specific to a user or its error for every one) Check the Webserver if its running or not, If it’s not running start it Check if the application server and application is running.. if not start it Try to access the Application directly from the Appserver .. ie using the http transport port. ie wc_defalut .. ( this will identify if the error is due to App server or is with the Webserver/plugin) check for the e...