HPE GreenLake Administration
- Community Home
 - >
 - Servers and Operating Systems
 - >
 - Operating Systems
 - >
 - Operating System - HP-UX
 - >
 - Socket IP behaviour, when EPIPE?
 
Operating System - HP-UX
        1840122
        Members
    
    
        2251
        Online
    
    
        110161
        Solutions
    
Forums
        Categories
Company
Local Language
                
                  
                  back
                
        
                
        
                
        
                
        
        
        
                
        
                
        
        
        
                
        
              
              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
                
                  
                  back
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
                
            
            
                
            
                
            
                
            
                
            
            
                
            
                
            
            
                
            
                
              
            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
Blogs
        Information
        Community
Resources
Community Language
        Language
        Forums
Blogs
	
		
			
            
                
            Go to solution
        
            
		
		
			
            	
	
		
        
		
	
	
		Topic Options
			
				
					
	
			
		
	- 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
 
06-30-2003 07:40 AM
06-30-2003 07:40 AM
			
				
					
					
						Hello again,
I've two processes exchangig data via an IP connection; at a certain moment one of them writes data on a socket and receives errno = EPIPE;
I'm sure that the remore reader dodn't close the socket and didn't exit or aborted the communication.
My question is: are there any causes local to the writer processes affecting the result of the data sending?
Is it possible that the processes chain from one machine to the other one is interrupted on the local sender side?
I've no more explaination for this problem ...
thanks
Enrico
	
			
				
		
			
			
			
			
			
			
		
		
		
	
	
	
I've two processes exchangig data via an IP connection; at a certain moment one of them writes data on a socket and receives errno = EPIPE;
I'm sure that the remore reader dodn't close the socket and didn't exit or aborted the communication.
My question is: are there any causes local to the writer processes affecting the result of the data sending?
Is it possible that the processes chain from one machine to the other one is interrupted on the local sender side?
I've no more explaination for this problem ...
thanks
Enrico
Solved! Go to Solution.
		3 REPLIES 3
	
	            
            
		
		
			
            
                - Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-30-2003 07:53 AM
06-30-2003 07:53 AM
			
				
					
						
							Re: Socket IP behaviour, when EPIPE?
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Hi,
did you checked the PATH ?
I found some with the EPIPE error,
like
PHNE_18553
or latest arpa PHNE_28538
HTH,
Massimo
					
				
			
			
				
			
			
				
			
			
			
			
			
			
		
		
		
	
	
	
did you checked the PATH ?
I found some with the EPIPE error,
like
PHNE_18553
or latest arpa PHNE_28538
HTH,
Massimo
- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-30-2003 09:18 AM
06-30-2003 09:18 AM
Solution
			
				
					
					
						Sockets / ports can be reviewed with 'netstat' and 'lsof'.
lsof -i tcp:#### (* where port number = #### *)
lsof -i udp:####
netstat -an | grep -i ####
Also use 'tcpdump' to review ip messages coming into the socket from the sending host.
tcpdump ####
Here's were you can get:
tcpdump:
http://hpux.cict.fr/hppd/hpux/Networking/Admin/tcpdump-3.6.2/
lsof:
http://hpux.cict.fr/hppd/hpux/Sysadmin/lsof-4.64/
		
		
	
	
	
lsof -i tcp:#### (* where port number = #### *)
lsof -i udp:####
netstat -an | grep -i ####
Also use 'tcpdump' to review ip messages coming into the socket from the sending host.
tcpdump ####
Here's were you can get:
tcpdump:
http://hpux.cict.fr/hppd/hpux/Networking/Admin/tcpdump-3.6.2/
lsof:
http://hpux.cict.fr/hppd/hpux/Sysadmin/lsof-4.64/
	Support Fatherhood - Stop Family Law
			
			
				
			
			
			
			
			
			
		- Mark as New
 - Bookmark
 - Subscribe
 - Mute
 - Subscribe to RSS Feed
 - Permalink
 - Report Inappropriate Content
 
06-30-2003 09:34 AM
06-30-2003 09:34 AM
			
				
					
						
							Re: Socket IP behaviour, when EPIPE?
						
					
					
				
			
		
	
			
	
	
	
	
	
			
				
					
					
						Venturi,
EPIPE is generated when you try to write to a socket that is already dead. Check the pattern of this happening.
Run the applications through tusc to pinpoint.
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.5/
HTH,
Umapathy
					
				
			
			
				
		
		
	
	
	
EPIPE is generated when you try to write to a socket that is already dead. Check the pattern of this happening.
Run the applications through tusc to pinpoint.
http://hpux.connect.org.uk/hppd/hpux/Sysadmin/tusc-7.5/
HTH,
Umapathy
	Arise Awake and Stop NOT till the goal is Reached!
			
			
				
			
			
			
			
			
			
		The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
		
	
	
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP