- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle versus Apache
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
04-09-2005 12:55 AM
04-09-2005 12:55 AM
Oracle versus Apache
I have found a problem between my Oracle 9i and the default apache web server I have installed in the system . If oracle is running the apache can not be started and if apache is running oracle can not be started .
This is the error log of apache startup when oracle is running.
[Sat Apr 09 14:29:30 2005] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Sat Apr 09 14:29:30 2005] [notice] LDAP: SSL support unavailable
[Sat Apr 09 14:29:30 2005] [crit] (28)No space left on device: mod_rewrite: could not
create rewrite_log_lock
Configuration Failed
This is the error log from oracle when apache is running:
SQL> Connected to an idle instance.
SQL> ORA-00600: internal error code, arguments: [OSDEP_INTERNAL], [], [], [], [], [], [], []
ORA-27302: failure occurred at: skgpwreset1
ORA-27303: additional information: invalid shared ctx
ORA-27146: post/wait initialization failed
ORA-27300: OS system dependent operation:semget failed with status: 28
ORA-27301: OS failure message: No space left on device
ORA-27302: failure occurred at: sskgpsemsper
Whith the ipcs commnad I see the areas of memory used by the application ... This problem is happening in the two new rp4440 systems , however in the old rp5470 everything works fine.
Thanks in advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2005 05:02 AM
04-09-2005 05:02 AM
Re: Oracle versus Apache
It appears you have a lack of disk space somewhere:
No space left on device
live free or die
harry d brown jr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2005 11:56 AM
04-09-2005 11:56 AM
Re: Oracle versus Apache
define ENOSPC 28 /* No space left on device */
from man 2 errno:
[ENOSPC] No space left on device. During a write() to an ordinary file, there is no free space left on the device; or no space in system table during msgget(), semget(), or semop() while SEM_UNDO flag is set.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-09-2005 01:43 PM
04-09-2005 01:43 PM
Re: Oracle versus Apache
This can happen if your init.ora - processes parameter is set
too high, but the kernel is not configured to handle this.
In our case, the message, ' operation:semget failed' indicates
the call to get the required number of semaphores has failed.
Suggestion:
Increase your kernel parameters , specifically the semaphore
related parameters such as SEMMNI and SEMMNS.
OR
Decrease the processes value in the init.ora and try restarting
the instance.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2005 12:30 AM
04-10-2005 12:30 AM
Re: Oracle versus Apache
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2005 07:10 PM
04-10-2005 07:10 PM
Re: Oracle versus Apache
. This is my bdf:
Aramis:/root> bdf
Filesystem kbytes used avail %used Mounted on
/dev/vg00/lvol3 819200 262240 552728 32% /
/dev/vg00/lvol1 497584 44216 403608 10% /stand
/dev/vg00/lvol8 8708096 922168 7725936 11% /var
/dev/vg00/lvol7 2564096 1359848 1194904 53% /usr
/dev/vg00/lvol6 2048000 1439408 603864 70% /tmp
/dev/vg00/lvol5 5120000 2259520 2838200 44% /opt
/dev/vg00/lvol4 516096 443320 72352 86% /home
/dev/vgtemp/lvol3 12288000 2058298 9590402 18% /tmp-mad
/dev/vgpkgdb/503 5120000 1326857 3557859 27% /mad503
/dev/vgora/data 10240000 5705871 4250787 57% /mad503/madora
/dev/vgredo/redo 2560000 631498 1807977 26% /mad503/redo
/dev/vgora/ora 5120000 3137500 1858642 63% /ora
Can anyone tell me how to order the shared memory areas in my servers..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-10-2005 08:34 PM
04-10-2005 08:34 PM
Re: Oracle versus Apache
Increasing the shared memory size and semaphores kernel parameters the problem was solved.
Thanks for your help