Forum
Merhaba
Günlerdir bu sorun üzerinde çalışıyorum fakat sorunu bulamadım.
IIS hiç bir ip üzerinde port 80 ile çalışmıyor fakat ftp server kurarsam çalışıyor. IIS ile ilgili bir sorun var
defalarca kaldırıp yeniden kurdum ama sorun devam ediyor.
Currports ile taratıyorum 192.168.2.20 ip sini kullanan port 80 hiç birşey yok
fakat iis şöyle bir hata veriyor
The process cannot access the file because it is being used by another process. (Exception from HRESULT: 0x80070020)
Sunucu üzerinde team viewer, skype benzeri port 80 kullanacak birşey çalışmıyor.
192.168.2.20 üzerinde ftp server kurup port 80 diyorum bu çalışıyor hatta http requestleri geliyor loglara ama bu servisi durdurup iis de port 80 yaptığımda hata veriyor.
IIS port 90 yaparsam sorunsuz çalışıyor.
Yardımcı olabilecek arkadaşlara şimdiden teşekkür ederim.
tekrar selamlar
sorunun çözümünü 3. gün sonunda buldum.
.net 4 ü uninstall ettikten sonra aşağıdaki komutları uyguladım düzeldi.
Başına gelen olursa yardımım olmuş olsun.
Hi!
I've solved the problem!
IIS7 assumes it's running alone on the server and took an 0.0.0.0 address for all services you add. HTTP and HTTPS.
You can see it when running 'netstat an' in cmd.
If there are some 0.0.0.0 addresses you can add the ip address your IIS7 is using by doing the following;
1) Open a command prompt
2) Type netsh
3) Type http
4) Type sho iplisten. It should be blank
5) Type add iplisten ipaddress=192.168.0.90 (you're server ip('s))
You should get IP address successfully added
6) Type sho iplisten again
It should show 192.168.0.90 or more in the list
7) Type exit to get out of netsh
Type type netstat -an. See if you notice 192.168.0.90:80 in the list. If you see 0.0.0.0:80, do an iisreset
Çok teşekkürler.