OT: IIS 5 randomly stops serving pages

2002-10-02 Thread Bryan Stevenson

Hi All,

I'm running Win 2K Pro with IIS 5 and have run into a weird problem.
Periodically the server will stop server pages (users see Page cannot be
displayed).  IIS and the WWW service are both running.  If I try and
restart the WWW service, it will not successfully restart.  If I try and
stop and start IIS, it will whine while trying to start about something like
that whatever is already in use (sorry about the whatever partI didn't
write it down).  So basically I'm stuck with a server reboot to clear it up.
The network connections are fine, and there doesn't seem to be any pattern
to the server death.

I've scoured Google and IISFAQ.com with no luckany thoughts?

Oh ya...all sites are running in Low(IIS Process).

TIA

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



Re: IIS 5 randomly stops serving pages

2002-10-02 Thread Bryan Stevenson

OK I killed the server again and when trying to restart IIS it says Address
already in use?

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Bryan Stevenson [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 9:36 AM
Subject: OT: IIS 5 randomly stops serving pages


 Hi All,

 I'm running Win 2K Pro with IIS 5 and have run into a weird problem.
 Periodically the server will stop server pages (users see Page cannot be
 displayed).  IIS and the WWW service are both running.  If I try and
 restart the WWW service, it will not successfully restart.  If I try and
 stop and start IIS, it will whine while trying to start about something
like
 that whatever is already in use (sorry about the whatever partI
didn't
 write it down).  So basically I'm stuck with a server reboot to clear it
up.
 The network connections are fine, and there doesn't seem to be any pattern
 to the server death.

 I've scoured Google and IISFAQ.com with no luckany thoughts?

 Oh ya...all sites are running in Low(IIS Process).

 TIA

 Bryan Stevenson B.Comm.
 VP  Director of E-Commerce Development
 Electric Edge Systems Group Inc.
 t. 250.920.8830
 e. [EMAIL PROTECTED]

 -
 Macromedia Associate Partner
 www.macromedia.com
 -
 Vancouver Island ColdFusion Users Group
 Founder  Director
 www.cfug-vancouverisland.com

 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: IIS 5 randomly stops serving pages

2002-10-02 Thread Lee Fuller

We've run into this as well.  However, we run a script to kill both IIS
and CFMX (yes MX.. Not 5.. But I think it's the same problem), and it
has minimized the occurances.  Although it still happens.

Here's the BAT file that we've tested over time, and it seems to help. 

(Note that you'll need KILL from the Resource Kit to use this -- and the
order is CRITICAL -- anything else doesn't work well.  Also, we run it
twice because sometimes it simply hangs the IIS process and doesn't
bring it back):


===
@echo off
cls
echo Restarting IIS Service...
net stop World Wide Web Publishing Service
net stop IIS Admin Service
kill -f inetinfo.exe
sleep 3
net start World Wide Web Publishing Service
net start IIS Admin Service
sleep 3
net stop ColdFusion MX Application Server
sleep 2
net start ColdFusion MX Application Server
echo.
echo.
echo Restarting IIS Service...
net stop World Wide Web Publishing Service
net stop IIS Admin Service
kill -f inetinfo.exe
sleep 3
net start World Wide Web Publishing Service
net start IIS Admin Service
sleep 3
net stop ColdFusion MX Application Server
sleep 2
net start ColdFusion MX Application Server
echo.
echo.
echo Done...
sleep 3
exit
===

You can take out the sleep options if you want.  Not sure if they help
or not.  Haven't taken them out to see.

HTH

Lee

| -Original Message-
| From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
| Sent: Wednesday, October 02, 2002 9:37 AM
| To: CF-Talk
| Subject: OT: IIS 5 randomly stops serving pages
| 
| 
| Hi All,
| 
| I'm running Win 2K Pro with IIS 5 and have run into a weird 
| problem. Periodically the server will stop server pages 
| (users see Page cannot be displayed).  IIS and the WWW 
| service are both running.  If I try and restart the WWW 
| service, it will not successfully restart.  If I try and stop 
| and start IIS, it will whine while trying to start about 
| something like that whatever is already in use (sorry about 
| the whatever partI didn't write it down).  So basically 
| I'm stuck with a server reboot to clear it up. The network 
| connections are fine, and there doesn't seem to be any 
| pattern to the server death.
| 
| I've scoured Google and IISFAQ.com with no luckany thoughts?
| 
| Oh ya...all sites are running in Low(IIS Process).
| 
| TIA
| 
| Bryan Stevenson B.Comm.
| VP  Director of E-Commerce Development
| Electric Edge Systems Group Inc.
| t. 250.920.8830
| e. [EMAIL PROTECTED]
| 
| -
| Macromedia Associate Partner
| www.macromedia.com
| -
| Vancouver Island ColdFusion Users Group
| Founder  Director
| www.cfug-vancouverisland.com
| 
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: IIS 5 randomly stops serving pages

2002-10-02 Thread Lee Fuller

Oh.. And the other thing that seemed to help was to up the total allowed
connections in the CF Admin settings screen. (We upped ours from 25 to
150.)  It seems that fairly active sites exacerbate the problem.

HTH

Lee

| -Original Message-
| From: Lee Fuller [mailto:[EMAIL PROTECTED]] 
| Sent: Wednesday, October 02, 2002 11:06 AM
| To: CF-Talk
| Subject: RE: IIS 5 randomly stops serving pages
| 
| 
| We've run into this as well.  However, we run a script to 
| kill both IIS and CFMX (yes MX.. Not 5.. But I think it's the 
| same problem), and it has minimized the occurances.  Although 
| it still happens.
| 
| Here's the BAT file that we've tested over time, and it seems 
| to help. 
| 
| (Note that you'll need KILL from the Resource Kit to use this 
| -- and the order is CRITICAL -- anything else doesn't work 
| well.  Also, we run it twice because sometimes it simply 
| hangs the IIS process and doesn't bring it back):
| 
| 
| ===
| @echo off
| cls
| echo Restarting IIS Service...
| net stop World Wide Web Publishing Service
| net stop IIS Admin Service
| kill -f inetinfo.exe
| sleep 3
| net start World Wide Web Publishing Service
| net start IIS Admin Service
| sleep 3
| net stop ColdFusion MX Application Server
| sleep 2
| net start ColdFusion MX Application Server
| echo.
| echo.
| echo Restarting IIS Service...
| net stop World Wide Web Publishing Service
| net stop IIS Admin Service
| kill -f inetinfo.exe
| sleep 3
| net start World Wide Web Publishing Service
| net start IIS Admin Service
| sleep 3
| net stop ColdFusion MX Application Server
| sleep 2
| net start ColdFusion MX Application Server
| echo.
| echo.
| echo Done...
| sleep 3
| exit
| ===
| 
| You can take out the sleep options if you want.  Not sure 
| if they help or not.  Haven't taken them out to see.
| 
| HTH
| 
|   Lee
| 
| | -Original Message-
| | From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
| | Sent: Wednesday, October 02, 2002 9:37 AM
| | To: CF-Talk
| | Subject: OT: IIS 5 randomly stops serving pages
| | 
| | 
| | Hi All,
| | 
| | I'm running Win 2K Pro with IIS 5 and have run into a weird
| | problem. Periodically the server will stop server pages 
| | (users see Page cannot be displayed).  IIS and the WWW 
| | service are both running.  If I try and restart the WWW 
| | service, it will not successfully restart.  If I try and stop 
| | and start IIS, it will whine while trying to start about 
| | something like that whatever is already in use (sorry about 
| | the whatever partI didn't write it down).  So basically 
| | I'm stuck with a server reboot to clear it up. The network 
| | connections are fine, and there doesn't seem to be any 
| | pattern to the server death.
| | 
| | I've scoured Google and IISFAQ.com with no luckany thoughts?
| | 
| | Oh ya...all sites are running in Low(IIS Process).
| | 
| | TIA
| | 
| | Bryan Stevenson B.Comm.
| | VP  Director of E-Commerce Development
| | Electric Edge Systems Group Inc.
| | t. 250.920.8830
| | e. [EMAIL PROTECTED]
| | 
| | -
| | Macromedia Associate Partner
| | www.macromedia.com
| | -
| | Vancouver Island ColdFusion Users Group
| | Founder  Director
| | www.cfug-vancouverisland.com
| | 
| | 
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.



Re: IIS 5 randomly stops serving pages

2002-10-02 Thread Bryan Stevenson

Thanks for the info Lee.

Do you run that BAT file on a rgualr basis or just when it dies?  If it's
just when it dies how do could it possible lower the occurences (being that
it's only run when it dies)??

What is KILL and where can I get the Resource Kit?

TIA ;-)

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com
- Original Message -
From: Lee Fuller [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Wednesday, October 02, 2002 11:06 AM
Subject: RE: IIS 5 randomly stops serving pages


 We've run into this as well.  However, we run a script to kill both IIS
 and CFMX (yes MX.. Not 5.. But I think it's the same problem), and it
 has minimized the occurances.  Although it still happens.

 Here's the BAT file that we've tested over time, and it seems to help.

 (Note that you'll need KILL from the Resource Kit to use this -- and the
 order is CRITICAL -- anything else doesn't work well.  Also, we run it
 twice because sometimes it simply hangs the IIS process and doesn't
 bring it back):


 ===
 @echo off
 cls
 echo Restarting IIS Service...
 net stop World Wide Web Publishing Service
 net stop IIS Admin Service
 kill -f inetinfo.exe
 sleep 3
 net start World Wide Web Publishing Service
 net start IIS Admin Service
 sleep 3
 net stop ColdFusion MX Application Server
 sleep 2
 net start ColdFusion MX Application Server
 echo.
 echo.
 echo Restarting IIS Service...
 net stop World Wide Web Publishing Service
 net stop IIS Admin Service
 kill -f inetinfo.exe
 sleep 3
 net start World Wide Web Publishing Service
 net start IIS Admin Service
 sleep 3
 net stop ColdFusion MX Application Server
 sleep 2
 net start ColdFusion MX Application Server
 echo.
 echo.
 echo Done...
 sleep 3
 exit
 ===

 You can take out the sleep options if you want.  Not sure if they help
 or not.  Haven't taken them out to see.

 HTH

 Lee

 | -Original Message-
 | From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
 | Sent: Wednesday, October 02, 2002 9:37 AM
 | To: CF-Talk
 | Subject: OT: IIS 5 randomly stops serving pages
 |
 |
 | Hi All,
 |
 | I'm running Win 2K Pro with IIS 5 and have run into a weird
 | problem. Periodically the server will stop server pages
 | (users see Page cannot be displayed).  IIS and the WWW
 | service are both running.  If I try and restart the WWW
 | service, it will not successfully restart.  If I try and stop
 | and start IIS, it will whine while trying to start about
 | something like that whatever is already in use (sorry about
 | the whatever partI didn't write it down).  So basically
 | I'm stuck with a server reboot to clear it up. The network
 | connections are fine, and there doesn't seem to be any
 | pattern to the server death.
 |
 | I've scoured Google and IISFAQ.com with no luckany thoughts?
 |
 | Oh ya...all sites are running in Low(IIS Process).
 |
 | TIA
 |
 | Bryan Stevenson B.Comm.
 | VP  Director of E-Commerce Development
 | Electric Edge Systems Group Inc.
 | t. 250.920.8830
 | e. [EMAIL PROTECTED]
 |
 | -
 | Macromedia Associate Partner
 | www.macromedia.com
 | -
 | Vancouver Island ColdFusion Users Group
 | Founder  Director
 | www.cfug-vancouverisland.com
 |
 |
 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm



RE: IIS 5 randomly stops serving pages

2002-10-02 Thread Lee Fuller

Hi Bryan,

We run it each night at around 2:30am.  The resource kit is available
from MS.  It actually may be in the Support section of the Advanced
Server disc.  Check there first.  But here's a link to their site:

http://www.microsoft.com/windows2000/techinfo/reskit/default.asp

HTH



| -Original Message-
| From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] 
| Sent: Wednesday, October 02, 2002 11:31 AM
| To: CF-Talk
| Subject: Re: IIS 5 randomly stops serving pages
| 
| 
| Thanks for the info Lee.
| 
| Do you run that BAT file on a rgualr basis or just when it 
| dies?  If it's just when it dies how do could it possible 
| lower the occurences (being that it's only run when it dies)??
| 
| What is KILL and where can I get the Resource Kit?
| 
| TIA ;-)
| 
| Bryan Stevenson B.Comm.
| VP  Director of E-Commerce Development
| Electric Edge Systems Group Inc.
| t. 250.920.8830
| e. [EMAIL PROTECTED]
| 
| -
| Macromedia Associate Partner
| www.macromedia.com
| -
| Vancouver Island ColdFusion Users Group
| Founder  Director
| www.cfug-vancouverisland.com
| - Original Message -
| From: Lee Fuller [EMAIL PROTECTED]
| To: CF-Talk [EMAIL PROTECTED]
| Sent: Wednesday, October 02, 2002 11:06 AM
| Subject: RE: IIS 5 randomly stops serving pages
| 
| 
|  We've run into this as well.  However, we run a script to kill both 
|  IIS and CFMX (yes MX.. Not 5.. But I think it's the same 
| problem), and 
|  it has minimized the occurances.  Although it still happens.
| 
|  Here's the BAT file that we've tested over time, and it 
| seems to help.
| 
|  (Note that you'll need KILL from the Resource Kit to use 
| this -- and 
|  the order is CRITICAL -- anything else doesn't work well.  Also, we 
|  run it twice because sometimes it simply hangs the IIS process and 
|  doesn't bring it back):
| 
| 
|  ===
|  @echo off
|  cls
|  echo Restarting IIS Service...
|  net stop World Wide Web Publishing Service
|  net stop IIS Admin Service
|  kill -f inetinfo.exe
|  sleep 3
|  net start World Wide Web Publishing Service
|  net start IIS Admin Service
|  sleep 3
|  net stop ColdFusion MX Application Server
|  sleep 2
|  net start ColdFusion MX Application Server
|  echo.
|  echo.
|  echo Restarting IIS Service...
|  net stop World Wide Web Publishing Service
|  net stop IIS Admin Service
|  kill -f inetinfo.exe
|  sleep 3
|  net start World Wide Web Publishing Service
|  net start IIS Admin Service
|  sleep 3
|  net stop ColdFusion MX Application Server
|  sleep 2
|  net start ColdFusion MX Application Server
|  echo.
|  echo.
|  echo Done...
|  sleep 3
|  exit
|  ===
| 
|  You can take out the sleep options if you want.  Not sure if they 
|  help or not.  Haven't taken them out to see.
| 
|  HTH
| 
|  Lee
| 
|  | -Original Message-
|  | From: Bryan Stevenson [mailto:[EMAIL PROTECTED]]
|  | Sent: Wednesday, October 02, 2002 9:37 AM
|  | To: CF-Talk
|  | Subject: OT: IIS 5 randomly stops serving pages
|  |
|  |
|  | Hi All,
|  |
|  | I'm running Win 2K Pro with IIS 5 and have run into a 
| weird problem. 
|  | Periodically the server will stop server pages (users see Page 
|  | cannot be displayed).  IIS and the WWW service are both 
| running.  
|  | If I try and restart the WWW service, it will not successfully 
|  | restart.  If I try and stop and start IIS, it will whine while 
|  | trying to start about something like that whatever is already in 
|  | use (sorry about the whatever partI didn't write it 
| down).  So 
|  | basically I'm stuck with a server reboot to clear it up. 
| The network
|  | connections are fine, and there doesn't seem to be any
|  | pattern to the server death.
|  |
|  | I've scoured Google and IISFAQ.com with no luckany thoughts?
|  |
|  | Oh ya...all sites are running in Low(IIS Process).
|  |
|  | TIA
|  |
|  | Bryan Stevenson B.Comm.
|  | VP  Director of E-Commerce Development
|  | Electric Edge Systems Group Inc.
|  | t. 250.920.8830
|  | e. [EMAIL PROTECTED]
|  |
|  | -
|  | Macromedia Associate Partner
|  | www.macromedia.com
|  | -
|  | Vancouver Island ColdFusion Users Group
|  | Founder  Director
|  | www.cfug-vancouverisland.com
|  |
|  |
|  
| 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm