|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
*SIGH* Who can help with IIS problem
I think I killed my server somehow: http://pjshimmer.homeunix.com/
It won't load anymore, just says "too many users are connected" In IIS 5.1 there is no option to allow more connections (this is stupid), so I am out of ideas. How do I get it working again - Any suggestions? |
|
#2
|
|||
|
|||
|
If you read the docs you'd see that there is a hard-coded 10 connection limit to workstation versions of IIS. You will need a server version, NT, Windows 2000 or Windows 2003 if your XP won't handle the load.
One other possibility is you have some defective asp code that has caused your web server to run out of resources. Reboot, or stop and restart the www service will generally clear out this situation, but it will happen again in hours, days or weeks until the offending code is fixed. Last, make sure your XP is completely updated, including IE. Update the data drivers too (from www.microsoft.com/data ) |
|
#3
|
|||
|
|||
|
Oh yeah, there is an IIS forum
![]() |
|
#4
|
|||
|
|||
|
Damn. I restarted my comp and it was working fine, but then I tested the page a few more times and my server is down permanently again. Hate to restart my computer again tho. Tried stopping/restarting IIS but no luck - surprised there is no way to end the connections to the server. I just want to kick the users (out)!
|
|
#5
|
|||
|
|||
|
See if you can use the server again after 20 minutes or so. Sometimes when testing you eat up IIS sessions as you work on pages. Sessions time out after 20 minutes.
If you can hook back up to IIS after a session times out, look at using session.abandon in an asp page to explicitly log out of your session before closing the browser. That may help. Did you restart the www service by stopping the www service? You could try iisreset from a command prompt. |
|
#6
|
|||
|
|||
|
Hey doug, while we're on this subject I thought maybe you'd know something about this - it seems my server cannot handle I/O processing. For ex, I have this ASP code:
Code:
Set fs = server.CreateObject("Scripting.FileSystemObject")
response.write("hey")
'Set wfile = fs.OpenTextFile("counter.txt",ForReading)
The first line works, and the second line obviously does too. The server however gets stalled on the third line. The text file "counter.txt" does exist, so I am not sure what the problem is. This seems to be the problem. Any idea why my stupid server can't open a file? ![]() Last edited by vb.net : November 19th, 2003 at 12:17 AM. |
|
#7
|
|||
|
|||
|
Often your idea of what is a current directory and FSO's idea are different. Try specifying the entire path to the file:
Set wfile = fs.OpenTextFile(Server.MapPath("counter.txt"),ForReading) |
![]() |
| Viewing: Dev Shed Forums > Other > Dev Shed Lounge > *SIGH* Who can help with IIS problem |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|