1850823 Members
2844 Online
104056 Solutions
New Discussion

Opening up port 10000

 
SOLVED
Go to solution
Henry Rumschlag
New Member

Opening up port 10000

I am attempting to connect Veritas backup server software running on a Windows server to an HPUX Server (HPUX 11.11, Model rp3440) in order to perform data backup.
I have the veritas agent loaded on the server, and the status shows it ready to accept connection.
However, when I attempt connection, the backup software can't connect, error says the server is activly rejecting the connetion.
I have found that the Veritas software is trying to use port 10000 on the HPUX server.
Ok,now the question:
How do I open up port 10000 on the server?
5 REPLIES 5
Steven E. Protter
Exalted Contributor
Solution

Re: Opening up port 10000

Shalom,

Unless you are running a firewall, port 10000 is already open.

All you really need to do is run a service that listens on port 10000 and maybe add an entry to /etc/services

netstat -an | grep 10000
# make sure nothing is listening.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Henry Rumschlag
New Member

Re: Opening up port 10000

Steve, Thank You.

How do I run a service that listens on port 10000?
Tim Nelson
Honored Contributor

Re: Opening up port 10000

Your veritas backup agent should be listening to port 10000 on the hpux server.

netstat -an|grep 10000

if you have lsof
lsof -i :10000
should show you the PID and name of the process listening on that port.

If nothing is listed from either command then your agent is NOT running correctly or listening to the wrong port.

Steven Schweda
Honored Contributor

Re: Opening up port 10000

> How do I run a service that listens on
> port 10000?

Many things are possible, but I'll assume
that you want a _particular_ service to
listen at port 10000.

http://www.symantec.com/business/training/index.jsp
Henry Rumschlag
New Member

Re: Opening up port 10000

Thanks I have it working now.