Discussions
Categories
- 197K All Categories
- 2.5K Data
- 546 Big Data Appliance
- 1.9K Data Science
- 450.8K Databases
- 221.9K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 31 Multilingual Engine
- 552 MySQL Community Space
- 479 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.1K ORDS, SODA & JSON in the Database
- 556 SQLcl
- 4K SQL Developer Data Modeler
- 187.2K SQL & PL/SQL
- 21.4K SQL Developer
- 296.4K Development
- 17 Developer Projects
- 139 Programming Languages
- 293K Development Tools
- 110 DevOps
- 3.1K QA/Testing
- 646.1K Java
- 28 Java Learning Subscription
- 37K Database Connectivity
- 158 Java Community Process
- 105 Java 25
- 22.1K Java APIs
- 138.2K Java Development Tools
- 165.3K Java EE (Java Enterprise Edition)
- 19 Java Essentials
- 162 Java 8 Questions
- 86K Java Programming
- 81 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 205 Java User Groups
- 24 JavaScript - Nashorn
- Programs
- 468 LiveLabs
- 39 Workshops
- 10.2K Software
- 6.7K Berkeley DB Family
- 3.5K JHeadstart
- 5.7K Other Languages
- 2.3K Chinese
- 175 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 233 Portuguese
Connection refused when attempting to contact 127.0.0.1:8080

464611
Member Posts: 7
Hello,
I have problem with this new oracle server
Operating system: Windows XP SP 2
Oracle version: Oracle Database 10g Express Edition Beta Release for Microsoft Windows
I finish the installation and I start the server:
\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleMTSRecoveryServ
ice
The OracleMTSRecoveryService service is starting.
The OracleMTSRecoveryService service was started successfully.
\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleXETNSListener
The OracleXETNSListener service is starting.
The OracleXETNSListener service was started successfully.
\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleServiceXE
The OracleServiceXE service is starting.
The OracleServiceXE service was started successfully.
And if I try to connect with admin panel (http://127.0.0.1:8080/htmldb) via browser, I get "connection refused when attempting to contact 127.0.0.1:8080".
I disabled firewall and same thing.
I installed oracle into another computer and nothing new.
My friend tried it on his windows XP and the same thing
I have problem with this new oracle server
Operating system: Windows XP SP 2
Oracle version: Oracle Database 10g Express Edition Beta Release for Microsoft Windows
I finish the installation and I start the server:

ice
The OracleMTSRecoveryService service is starting.
The OracleMTSRecoveryService service was started successfully.

The OracleXETNSListener service is starting.
The OracleXETNSListener service was started successfully.

The OracleServiceXE service is starting.
The OracleServiceXE service was started successfully.
And if I try to connect with admin panel (http://127.0.0.1:8080/htmldb) via browser, I get "connection refused when attempting to contact 127.0.0.1:8080".
I disabled firewall and same thing.
I installed oracle into another computer and nothing new.
My friend tried it on his windows XP and the same thing

Comments
-
Pull up a command/DOS box and enter 'ipconfig'. It should give you an IP address with the form of 127.0.0.1 for your current connection. Try using that instead of 127.0.0.1
-
Hi,
On my windows XP SP2 machine I also have a service called OracleXEClrAgent
you could start this one with:
net start OracleXEClrAgent
the homepage of the database works fine on that machine
Emiel -
You can als use the following option after you started the Oracle database.
go to start
-->all programs
-->Oracle Database 10g Expres Edition
-->Go to Database Homepage
on my Windows machine the URL looks like http://127.0.0.1:8080/htmldb/f?p=4550:11:17293100987261901207::NO:::
Emiel -
Couple of things to try
From the command line windows, see if you can ping 127.0.0.1
If you get an error message then you have something wrong in your machine setup that you need to fix
If you can ping 127.0.0.1 then check that your browser is not blocking the connections. One thing we have seen is that sometimes people have No Proxies set for localhost and 127.0.0.1, and they will have an invalid character after the 1, such as a . (period) -
First see if OracleServiceXE and OracleXETNSListener services are running.
Replace 127.0.0.1 in the url, with the IP or the name of your machine. It must match the host declared in the tnsnames.ora file. The path is \oraclexe\app\oracle\product\10.2.0\server\admin\network\admin
OracleClrAgent service seems to be used when you want to run .net procedure from the database.
Reynaldo -
I have this in my tnsnames.ora file:
XE =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = test)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = XE)
)
)
I can ping 127.0.0.1. I tried to connect with http://test:8080, I got same error.
I tried http://test:1521 it doesn't do nothing, I don't get error and browser doesn't load anything
Message was edited by:
Agur -
your hostname is "test"?
can you ping test? -
Yes, my hostname is test and I can ping it too
-
Yeah.
I found solution to my problem. I am living in Estonia so I had set Language for non-Unicode programs (Control Panel>Regional and language options>Advanced) to Estonian. I changed it to English(United States) and reinstalled the Oracle and now it works -
Also note the following:
You can always run the "netstat -an" command from the command prompt to see if a port is actually listening on your server.
Nice to see you got it working.
This discussion has been closed.