- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Apache2.0 problem
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
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
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
тАО03-09-2003 03:11 PM
тАО03-09-2003 03:11 PM
Apache2.0 problem
[Sun Mar 09 16:19:51 2003] [emerg] (22)Invalid argument: Couldn't set permissions on cross-process lock
[Sun Mar 09 16:20:51 2003] [warn] pid file /opt/apache2/adm/httpd.pid overwritten -- Unclean shutdown of previous Apache run?
I am not expirienced in configuration of servers. Please, could anybody help me? Thank you in advance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-09-2003 07:58 PM
тАО03-09-2003 07:58 PM
Re: Apache2.0 problem
The previous shutdown of httpd have not removed /opt/apache2/adm/httpd.pid. So before starting httpd again.
#rm /opt/apache2/adm/httpd.pid
And regarding Couldn't set permissions on cross-process lock error .
You have enabed the MPM module ( Multiprocessing modules in apache ) . Confirm whether that module is necessary for your setup.
If yes , then check the ownership of the httpd executable. Should be root owned.
regards,
U.SivaKumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-10-2003 03:33 AM
тАО03-10-2003 03:33 AM
Re: Apache2.0 problem
If you just did an initial compile and install and it doesn't work, I suggest that you download an already build binary for HPUX 10.20. Here's the URL -> http://hpux.cs.utah.edu/hppd/hpux/Networking/WWW/apache2-2.0.35/
The URL above also has links to the readme file and man page. I suggest you read them before installing.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-06-2003 03:50 PM
тАО05-06-2003 03:50 PM
Re: Apache2.0 problem
Create a user called "www" on the machine; you may also wish the create a group called "www" as well. Set the User and Group tags in httpd.conf to the user and group you've created:
/*--example from httpd.conf --*/
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# . On SCO (ODT 3) use "User nouser" and "Group nogroup".
# . On HPUX you may not be able to use shared memory as nobody, and the
# suggested workaround is to create a user www and use that user.
# NOTE that some kernels refuse to setgid(Group) or semctl(IPC_SET)
# when the value of (unsigned)Group is above 60000;
# don't use Group #-1 on these systems!
#
User www
Group www
/*--end example--*/
It should start fine now.
Jason
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО05-07-2003 08:38 AM
тАО05-07-2003 08:38 AM
Re: Apache2.0 problem
TIA,
Sweth.