How do I change the IP address on Oracle 10g - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T13:27:24Zhttp://stackoverflow.com/feeds/question/83991http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/83991/how-do-i-change-the-ip-address-on-oracle-10g2How do I change the IP address on Oracle 10gJoshua2008-09-17T14:44:08Z2009-10-07T00:47:22Z
<p>What steps do I need to take to change an IP address for Oracle 10g? I cannot connect to the database after going from a dhcp address to a static IP and a reboot.</p>
http://stackoverflow.com/questions/83991/how-do-i-change-the-ip-address-on-oracle-10g/84018#840182Answer by David Aldridge for How do I change the IP address on Oracle 10gDavid Aldridge2008-09-17T14:46:49Z2008-09-17T16:00:10Z<p>More info please. Do you mean that you have changed the ip address of the host that the database is on and now you have to connect to it from a different macine, or are you having trouble starting the database after the ip change?</p>
<p>... and what error message do you receive?</p>
http://stackoverflow.com/questions/83991/how-do-i-change-the-ip-address-on-oracle-10g/84767#847673Answer by Dave Costa for How do I change the IP address on Oracle 10gDave Costa2008-09-17T15:54:07Z2008-09-17T15:54:07Z<p>If the server's IP address changed, these are the first things I would look at:</p>
<p>The TNSNAMES.ORA file on the client -- does it have the IP address hardcoded? If so, change it. Does it use the machine name? If so, does the machine name resolve to the correct IP address on your client machine?</p>
<p>The LISTENER.ORA file on the server -- does it explicitly specify the old IP address as its listening address?</p>
http://stackoverflow.com/questions/83991/how-do-i-change-the-ip-address-on-oracle-10g/108352#1083521Answer by cagcowboy for How do I change the IP address on Oracle 10gcagcowboy2008-09-20T14:42:57Z2008-09-22T08:08:59Z<p>Most obvious files to check are:</p>
<p>$ORACLE_HOME/network/admin/tnsnames.ora
$ORACLE_HOME/network/admin/listener.ora</p>
<p>Other than that we'd need more info...</p>
<ul>
<li>I presume you mean the Oracle 10g DB and not the Oracle 10g Application Server?</li>
<li>Does the database start ok?</li>
<li>Is there anything in the database alert log?</li>
<li>Are the error(s) connecting from a client or the server?</li>
<li>What error message(s) do you get?</li>
<li>Can you ping the machine on it's new address (by both name + IP address) From both client + server?</li>
<li>Does a TNSPING work?</li>
<li>Can you connect using SQL*Plus on the server?</li>
<li>What other tool(s) have you tried connecting with?</li>
</ul>
<p><strong>Update after comment</strong></p>
<p>Please can you post...</p>
<ul>
<li>Your old ip address (if you know it)</li>
<li>Your new ip address</li>
<li>Your FQDN (e.g. machine.domain.com)</li>
<li>The output of "ipconfig/all" (or equivalent)</li>
<li>Your listener.ora file</li>
<li>The output of "$ORACLE_HOME/bin/lsnrctl start"</li>
<li>The output of "$ORACLE_HOME/bin/lsnrctl status"</li>
</ul>