- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- Operating System - Tru64 Unix
- >
- Re: Tru64 and Netscape
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 01:13 AM
03-15-2007 01:13 AM
Tru64 and Netscape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 01:43 AM
03-15-2007 01:43 AM
Re: Tru64 and Netscape
No, Netscape does not care if you are running
a Web server on the same system. If you can
reach the outside world on port 443 but not
port 80, I'd suspect that a firewall
somewhere is blocking your access.
For a fairly simple, non-Netscape test, try
Telnet:
telnet
GET / HTTP/1.0
This should do roughly what your Web browser
does when pointed to "http://host/". If it
times out, then there's a basic connectivity
problem, not a Netscape problem.
Should we assume that Netscape works properly
when aimed at the Web server on the system
it's running on? Other Web servers on the
LAN (if there are any)?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 01:55 AM
03-15-2007 01:55 AM
Re: Tru64 and Netscape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 02:05 AM
03-15-2007 02:05 AM
Re: Tru64 and Netscape
browser and a Web server on the same system.
People do it all the time, on all kinds of
systems, including Tru64.
"Connection refused" normally means that
there is no service provided at the
destination for the port requested. In this
case, there's no Web server running on the
system to which you're trying to connect.
To what are you trying to connect? Can a Web
browser on some other system connect there?
Is there supposed to be someone listening to
port 80 on that system? (A clever firewall
could probably produce this effect, but it's
not what I'd expect from one.)
It might help to see some of the actual URLs
or commands you're using.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-15-2007 10:27 PM
03-15-2007 10:27 PM
Re: Tru64 and Netscape
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-16-2007 01:41 AM
03-16-2007 01:41 AM
Re: Tru64 and Netscape
I have no way and no intense desire to stop
you from believing whatever you wish to
believe. If you believe that running a Web
server on a system precludes using a Web
browser on that system, then you are about as
wrong as wrong could be, but in matters like
this you have a right to be wrong, and I
wouldn't dream of denying you that right.
The fact that a Web server (like Apache) is
_listening_ on port 80 does not stop any
program on the same system from trying to
open a connection to port 80 on that or any
other system, no matter what you believe.
I can certainly get to 192.6.126.144 from my
system (209.98.249.184) using HTTP or HTTPS
(although the Web page is not very exciting).
Things I (still) don't know:
1. How your "direct connection to the
internet" is made. I go through a DSL line
to an ISP.
2. Whether you can get to any other system
using HTTP (Netscape, Telnet, wget, ...).
3. Whether you can get to your own system
using HTTP (Netscape, Telnet, wget, ...).
4. The IP address of your system.
5. When you say things like "Apache NOT HTTP
traffic", what do you think Apache does, if
not "HTTP traffic"?
6. If you know so much, what are you doing
here?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-26-2007 08:24 PM
03-26-2007 08:24 PM
Re: Tru64 and Netscape
In addition to Steven's answers
both apache and tomcat are programs intended for http/https traffic (webservices).
This is regardless of which port is used.
Most commonly for http is port 80, but you can configure any other port. Same for hhtps and port 443.
You specify apache is configured for port 80 and tomcat for port 8080. so they should both be ready for http trafic incomming on these ports.
If you try from the same box as where apache is running "telnet localhost 80" and get no response, then either apache is not running or it is not configured to use this port.
If you do get response locally, try connecting from a client on the same network without using a proxy.
I confirm Stevens answer that precense of these programs on the box should not stop you from connecting to a remote webserver.
The netscape client selects a free port on the local system to contact port 80 outgoing on the remote system (internet), this has no relation with the local application using port 80 incomming on the local system.
So there must be another reason why https is allowed and http not!
When using a proxy it could be incompatibility between the proxy-software and netscape on the Tru64-box. Or the Tru64 box is not allowed by the proxy (ip-range? DNSlookup?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2007 03:22 AM
03-27-2007 03:22 AM
Re: Tru64 and Netscape
When you run a web browser on a client it attempts to connect to those ports but uses a different port for it's outgoing connection.
Try running tcpdump on your system and you can see for yourself which ports are being used by these connections and whether or not anything is actually responding from the remote system.