- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- error 233 & 226
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
10-09-2001 09:13 AM
10-09-2001 09:13 AM
The Apache web server stops responding and only a restart will make it work again.
I think some kernel parameters needs to changed, but I want some help in finding out which one.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:18 AM
10-09-2001 09:18 AM
Re: error 233 & 226
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:29 AM
10-09-2001 09:29 AM
Re: error 233 & 226
The IBM Apache Server is for 11.0 and not ported from 10.0. The WebServer(Apache) keeps working fine and then stops responding - "[crit] (226)Address already in use: make_sock: could not bind to port 80".
until we do a restart of Apache.The /etc/services file is OK and we have this server in production for over an year.We did not have this error earlier but the number of applications have increased.
I will send you a list of kernel parameters.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:29 AM
10-09-2001 09:29 AM
Re: error 233 & 226
[ENOBUFS] No buffer space is available for an
internal data structure.
See this URL for more details:
http://us-support.external.hp.com/cki/bin/doc.pl/sid=d862b1dc024cd46c21/screen=ckiDisplayDocument?docId=200000056251095
Firstly, I would try to fix the second error, i.e. the one indicating that the address is already in use. Just make sure that nothing is LISTENing on port 80:
netstat -na|grep 80|grep LISTEN
If there is something...try to kill it. You may have to use lsof to hunt down the process...but most likely its some sort of web server. If you have lsof on your system, you can determine the processid of the LISTENing process using the command:
lsof -i TCP:80.
Then after killing this process, try bringing apache up.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:37 AM
10-09-2001 09:37 AM
Re: error 233 & 226
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:50 AM
10-09-2001 09:50 AM
Re: error 233 & 226
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 09:59 AM
10-09-2001 09:59 AM
Re: error 233 & 226
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 11:07 AM
10-09-2001 11:07 AM
Re: error 233 & 226
Any suggestions on what we should look at for "[crit] (226)Address already in use: make_sock: could not bind to port 80" This error is listed on HP-Unix m/c in the /usr/include/sys/errno.h file as " EADDRINUSE 226 /* Address already in use */.
This causes our web server to stop responding. Do you this this could also be related to the maxdsiz being too small.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 12:20 PM
10-09-2001 12:20 PM
Re: error 233 & 226
tcp 0 0 *.80 *.* LISTEN
if so, then some process is already bound to that port, probably the previous incarnation of apache. Just make sure to kill off this process (lsof comes in handy in determining the process) and then try restarting apache.
-Santosh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 01:00 PM
10-09-2001 01:00 PM
Re: error 233 & 226
Then when this happens the only option is to restart Apache---note this is a production server
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-09-2001 03:48 PM
10-09-2001 03:48 PM
SolutionBut after restarting its just a matter of time till you run into this limit again.
So I would again recommend increasing maxdsiz kernel parameter (this would require a reboot).
-Santosh