Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

socket 67 error, what is it ?

Status
Not open for further replies.

yordangs

ISP
Sep 7, 2001
91
MX
anyone knows for what is this socket im read something a bout and says its a printer socket but in my server does´nt have a pinter conected the error say this socket 67 its already in use anyone can help me
 
here are the results


grep 67 /etc/services
bootps 67/udp # bootp server port
namp 167/tcp # NAMP
namp 167/udp # NAMP
phonebook 767/tcp phone
phonebook 767/udp phone
rfa 4672/tcp # Remote File Access Server
rfa 4672/udp # Remote File Access Server
 
67 is used by the "bootp" service. You have a few choices

1. bootp is sometime used for printing, and also used for the SP family of RS/6000 servers.

Does this help ?

Bill.
 
ok yes im have a rs/6000 server but the problem its i have runnin a java aplication on this server and when mi clients try to conect sometimes show the error socket 67 its already in use how can disable this socket or for what reason its crashing with my aplication if my aplication always conect it to a 1433 port on a nother server and my web ages works on the port 80 what could be happend

thanks alot for your help i hope solve his problem fsatest i can because my clients are given me a headche
 
Put a "#" in front of the "bootps" entry in /etc/services, then do a "refresh -s inetd". Be careful though - turning off bootp may cause some problems if some program needs it.

Bill.
 
ok now i have the complete error may be you can tell me what it is

Error: Network error in connection- errno: 67, error:the name of the socket its already in use . for fd: 111
the 111 isnt the same alway this number its random

thanks alot anyway you are very kind for help me
 
netstat -an|grep -i estab|grep 67
ps -ef | grep ootp

Send the results.

Bill.
 
ps -ef | grep ootp
root 20374 21498 0 14:20:15 pts/8 0:00 grep ootp

netstat -an|grep -i estab|grep 67
tcp4 0 0 192.168.5.1.34683 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.34674 192.168.5.6.1433 ESTABLISHED
tcp4 0 2 148.245.139.97.23 148.245.139.103.4267 ESTABLISHED
tcp4 0 0 192.168.5.1.6000 192.168.5.1.62967 ESTABLISHED
tcp4 0 0 192.168.5.1.62967 192.168.5.1.6000 ESTABLISHED
tcp4 0 0 192.168.5.1.64367 192.168.5.6.1433 ESTABLISHED
tcp4 0 0 192.168.5.1.62625 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62611 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62582 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62228 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62064 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62063 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62062 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62046 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62045 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62044 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62029 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.62028 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.61983 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.61982 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.61981 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.61956 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.61947 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.53720 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.53719 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.53718 192.168.5.3.6789 ESTABLISHED
tcp4 0 0 192.168.5.1.44267 192.168.5.6.1433 ESTABLISHED
tcp4 0 0 192.168.5.1.48670 192.168.5.6.1433 ESTABLISHED
 
I'm at a loss here. If bootp is not running, then port 67 should be free'd up.

:-o

Bill.
 
I think that the 67 refers to the error number - errno - rather than to a port number Mike
michael.j.lacey@ntlworld.com
Email welcome if you're in a hurry or something -- but post in tek-tips as well please, and I will post my reply here as well.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top