February 19, 2009 at 9:52 am (Oracle)
Tags: application server, port, server, tomcat
I just needed to do this, since Oracle 10g XE Web Interface also listens on port 8080.
After a quick lookaround in its folders, I found a way.
So here is how it is done:
Stop Tomcat.
Go to <Your Tomcat Directory>/conf/
Edit server.xml there.
There will be a Connector tag there.
<Connector port=”8082” protocol=”HTTP/1.1″
connectionTimeout=”20000″
redirectPort=”8443″ />
Change its port attribute to anything you like; in my case it is 8082 as you can see.
Restart Tomcat.
Leave a Comment
February 19, 2009 at 1:38 am (Oracle)
Tags: 10g XE home page, 127.0.0.1:8080/apex, cannot access home page
I have just installed a brand new Oracle 10g XE and just after installation, I was not able to access the home page.
When I executed the "lsnrctl status" command I got this output:
C:\Documents and Settings\me>lsnrctl status
LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 – Production on 19-ÌUB-2009 00:01:03
Read the rest of this entry »
4 Comments
August 12, 2008 at 4:56 pm (Java, Linux, Oracle)
Tags: 10g R2, connection, database, OCI8
Hello folks,
Recently, I had another problem connecting to an Oracle 10g R2 database with the Oracle Call Interface. Well, this was not about the driver actually. Having passed 2 weeks from my first problem, this time I was deploying the servlet, Tomcat 6 and Oracle 10g R2 to a OpenSUSE 10.3 machine. It still was stopping at this line:
connection = DriverManager.getConnection(url, username, password);
Read the rest of this entry »
Leave a Comment
August 12, 2008 at 4:23 pm (Java, Oracle)
Tags: Driver, invalid login, JDBC, OCI8, ORA-01017
Hi,
Approximately 2 weeks ago, I encountered a strange problem while connecting to an Oracle database from my servlet on Tomcat Application Server. What was strange about it was that it was fully tested and working when it was residing on my laptop; however when I deployed the application to the PC at work, it started to give errors at this line:
connection = DriverManager.getConnection(url, username, password);
Read the rest of this entry »
Leave a Comment