Similar Posts
IZ046 Managing Oracle on Linux for DBA’s
Today, I had cleared my IZ046 Managing Oracle on Linux for DBA’s, the exam was sechdule for 9 a.m. I was on time for the exam. The most of the questions where regarding ASM, Installation and Administrating Linux. I was little tense before the exam, how would be the paper, but it was not so…
Linux change ip address
Q. How do I change ip address in Linux? A. There are different ways to change IP address in Linux (a) Command Line tools (b) Modify configuration files (c) Use GUI tools Task: Display current IP address and setting for network interface called eth0 Use ifconfig command: # ifconfig eth0 Output: eth0 Link encap:Ethernet HWaddr…
How to find Components Versions for 11i
Q: How to find Oracle Applications Web Server Version ? Q: How to find Version of Apache used with oracle apps 11i ? Log to Application tier as Operating System Usually called as APPLMGR ; go to location $IAS_ORACLE_HOME/Apache/Apache/bin and run command ./httpd -version You will see output like Server version: Oracle HTTP Server Powered…
How to Remove the User with Root id
I was checking the users in my unix box. Some old users where created by the previous administrator. When i tried to delete from the smc it was throwing error, “The account is mandatory, cant be deleted”. So, There is a workaround. 1. remove the entry from the passwd file # vi /etc/passwd 2. #pwconv…
Adding Route in AIX
The easiest way to change the default route is to do the following: 1. Use smitty route->Remove Static Route or issue the route -f to flush the routing table. 2. You should see output to the screen informing you that routes are being removed. 3. Then issue the netstat -rn command. You should not see…
How to mount remote windows partition (windows share) under Linux
How to mount remote windows partition (windows share) under Linux All files accessible in a Linux (and UNIX) system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out over several devices. The mount command serves to attach the file system found on some device to the…