- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- problem with multinet re-using port #
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
05-05-2004 09:16 AM
05-05-2004 09:16 AM
problem with multinet re-using port #
Having a problem with vms/multinet re-using port #.
Port # used is in 6000 range and when port needs to be reused stop/id is done on process using that port but process doesn't release port and the process still shows up as
thanks,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2004 09:29 AM
05-05-2004 09:29 AM
Re: problem with multinet re-using port #
If this process is started as a service, disabling and enabling the port might help.
Better solution:
$ TCPIP DISABLE SERVICE /PORT=#
$ STOP/ID=
$ TCPIP ENABLE SERVICE /PORT=#
HTH
Willem
OpenVMS Developer & System Manager
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2004 10:05 AM
05-05-2004 10:05 AM
Re: problem with multinet re-using port #
would that work for multinet also?
thank you
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-05-2004 10:09 PM
05-05-2004 10:09 PM
Re: problem with multinet re-using port #
This invokes the $FORCEX system service. Could mean that some tidying up is done on exit.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2004 10:35 AM
05-07-2004 10:35 AM
Re: problem with multinet re-using port #
To find out if a process has the port open do the following:
$ Define MU$SDA MULTINET:MULTINET$SDA.EXE
$ SET TERM/WID=132
$ ANALYZE/SYSTEM
$ MU SHOW CONNECTION
Look through output for your port. Then look to right about 3/4 of the way on the line for the device. It should be an INETxxx device or BGxxxx. Do a SHOW DEVICE of this device to see who the owner is
Multinet also has the ability to listen for connection request on a port and then create a detatched process to service that connection. This has advantages that you don't have to write the listener code just the service code. It also reserves the port so some process can use it before your listener server could start. To see if this is the case do:
$ MULTINET CONFIG/SERVER
server-config> SHOW * /FULL
Search the output for your port.
You can disable the service.
server-config> DISABLE xxx
server-config> RESTART