- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to enable 8888 port on HPux
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
08-11-2005 08:19 PM
08-11-2005 08:19 PM
how to enable 8888 port on HPux
Can anybody tell me how to enable port 8888
on hpux11
I need to enable secured socket link in the above port (SSL)
Can any body help me in this
Thanks
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:33 PM
08-11-2005 08:33 PM
Re: how to enable 8888 port on HPux
Enabling port on HPUX11 similar to other Unix flavour. Just give an entry for port 8888 and service used by into /etc/services file.
If you are starting SSL service using "inetd" daemon, add entry of ssl service into /etc/inetd.conf and restart the "inetd" by
# /usr/sbin/inetd -c
Inetd daemon rereads the configuration file and initiates the updates.
I hope it serves your purpose.
Regards,
RAjesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:36 PM
08-11-2005 08:36 PM
Re: how to enable 8888 port on HPux
# service port
example 8888
Save this change and execute related service with /etc/inetd.conf and restart inetd (daemon) as inetd -c.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:38 PM
08-11-2005 08:38 PM
Re: how to enable 8888 port on HPux
I have to enable ssl for thsi port ....
What enry should I put in the
services file and ined.conf file
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:42 PM
08-11-2005 08:42 PM
Re: how to enable 8888 port on HPux
Edit /opt/hpws/apache/conf/ssl.conf
Search and replace all references to 443 and change them to 8888.
Run /opt/hpws/apache/bin/apachectl startssl
You'll then be able to point your browser to:
https://yourserver:8888
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:44 PM
08-11-2005 08:44 PM
Re: how to enable 8888 port on HPux
1. Add this line into /etc/services
2. Give an entry in /etc/inetd.conf by following example in single line.
shell stream tcp nowait root /usr/lbin/remshd remshd
3. Run # /ust/sbin/inetd -c
Regards,
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:47 PM
08-11-2005 08:47 PM
Re: how to enable 8888 port on HPux
Can you tell me the service ame for ssl
Binu
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-11-2005 08:50 PM
08-11-2005 08:50 PM
Re: how to enable 8888 port on HPux
Can you give some more details on your port enabling requirements like for what application.
Regards,
Rajesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 09:26 PM
08-13-2005 09:26 PM
Re: how to enable 8888 port on HPux
Here's some generic information.
An application can be built in several different ways:
1.) The simple way: the application uses inetd to handle the real network connections. This is mostly used by small network service applications.
In this case, you set a name for your service and associate it with the port 8888 by writing a line in /etc/services. Then you add a line to /etc/inetd.conf to describe what you want started up when someone connects to the port. The inetd process will then open the port to "listen" for new connections.
2.) The semi-standalone way: the application handles the network connections itself, but refers to the port internally by some name. It asks the operating system to translate the port name to a port number, and then it uses that port number.
In this case, you must read the documentation of the application to find out the correct name, and then associate that name with the port 8888 by writing a line in /etc/services. Then you just start the application, and the application opens the port for use.
3.) The completely standalone way: there is a place for a port number in the application's configuration.
In this case, you just put "8888" in there and start the application. The application does all the rest.
If someone has installed an IPFilter or some other form of extra security, you may have to change also that security configuration to allow the connections succeed. IPFilter configuration is probably at /etc/opt/ipf/
if you're using a HP-supported version of IPFilter.
SSL is always done in the application level: nothing needs to be done with the operating system to "enable" SSL.
However, if you have an application that cannot do SSL on its own, you must use a SSL wrapper program to make it SSL-capable. "stunnel" is one such program. It is available for free at http://www.stunnel.org.
If you need to receive SSL connections, you must always have a SSL certificate.
You can make one yourself, but then nobody will trust it automatically, and the client connecting to your server will get a "untrusted certificate - do you really want to connect? (y/n)" messages. You can buy a certificate from companies like VeriSign or Thawte, and most clients can automatically verify that they are valid.
When you are getting a SSL certificate, you must remember that the certificate is tied to the DNS name of the server, *as seen by the client*. If you buy a certificate and then change the server's name, you have just wasted some money.