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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Apache.exe is maxing my CPU 1

Status
Not open for further replies.

mwolf00

Programmer
Nov 5, 2001
4,177
US
I installed Oracle 9i on my laptop for development and training. I run WinXP Pro on the laptop. Now, whenever I start the laptop, apache.exe sucks up all of my CPU processing for 10 minutes (and counting). Any ideas as to why and what I can do to resolve it?

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
 

Are there any clues in error_log ?

Have you tried running Apache from DOS ?
You may get some clues from the console output
ie
- set Oracle...HTTPServer service to manual start
- reboot
- go to $oracle_home\Apache\Apache
- do apache -k start

(apache -help will show the other startup options)

FYI, I have 9.2 Apache running fine on XP SP2 and haven't had to jump through hoops to make it work, so your problem is likely to be straightforward config / conflict issue.

Regards,

Steve Laing
 
Steve,

Thanks for the help!

When I went to look at the error_log, it was over 35M! It also gave me an error when I tried to open it (perhaps because it was so large). I moved it so a new one would be created and tried to restart apache.exe. I stopped it after about 10 seconds - here's the error_log
Code:
[Thu Jan 26 09:09:25 2006] [notice] FastCGI: process manager initialized
[Thu Jan 26 09:09:25 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" started (pid 572)
[Thu Jan 26 09:09:26 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 572) terminated with exit with status '3438920'
[Thu Jan 26 09:09:30 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 3068)
[Thu Jan 26 09:09:30 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 3068) terminated with exit with status '3438920'
[Thu Jan 26 09:09:35 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 2908)
[Thu Jan 26 09:09:36 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 2908) terminated with exit with status '3438920'
[Thu Jan 26 09:09:40 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 3320)
[Thu Jan 26 09:09:40 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 3320) terminated with exit with status '3438920'
[Thu Jan 26 09:09:45 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 3268)
[Thu Jan 26 09:09:45 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 3268) terminated with exit with status '3438920'
[Thu Jan 26 09:09:50 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 2816)
[Thu Jan 26 09:09:51 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 2816) terminated with exit with status '3438920'
[Thu Jan 26 09:09:55 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 2956)
[Thu Jan 26 09:09:55 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 2956) terminated with exit with status '3438920'
[Thu Jan 26 09:10:00 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" restarted (pid 1224)
[Thu Jan 26 09:10:00 2006] [warn] FastCGI: server "d:/oracle/ora92/bin/isqlplus" (pid 1224) terminated with exit with status '3438920'

Any idea what all of this means?

Programming today is a race between software engineers striving to build better and bigger idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning. - Rick Cook
 

I'm not an expert in iSQL*Plus (I'm not using it on my PC), but clearly your OracleHTTPServer is trying to talk to it and not succeeding.

Try commenting out the line which refers to isqlplus.conf near the bottom of httpd.conf. That may let you get OracleHTTPServer going.

Not sure from your first post whether you really need iSLQ*Plus, but if you have access to Metalink, article 185707.1 may help.

Steve
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top