![](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5kFdkuoPVY9964FZh-D_1zvE4PQij04i05YR13cPrdshyPkxTkCzY2d9V4KGmje-NewJSvKpoD4MMOZ7tA8QvEbDjmSsnYA-3FnIpSleKGb-KmzOCdnaJs3r7fVNqV0A1007AdA/s200/tux_logo_1.jpg)
OS Kernel parameter: ip_local_port_range
This is a prerequisite condition to test whether the OS kernel parameter "ip_local_port_range" is properly set.
Expected Value : between 9000 & 65500
Actual Value : between 32768 & 61000
The /proc/sys/net/ipv4/ip_local_port_range defines the local port range that is used by TCP and UDP traffic to choose the local port. You will see in the parameters of this file two numbers: The first number is the first local port allowed for TCP and UDP traffic on the server, the second is the last local port number. For high-usage systems you may change its default parameters to 32768-61000 -first-last.
echo "net.ipv4.ip_local_port_range = 9000 65500" >> /etc/sysctl.conf
sysctl -p /etc/sysctl.conf
This should solve your problem and you should be able to install the Oracle database on your system.
1 comment:
thank you very much, it was very helpful.. all these small things really matters sometimes. Thanks
Post a Comment