ototronik / media-pembelajaran-transmisi-otomatis

Automatically exported from code.google.com/p/media-pembelajaran-transmisi-otomatis
0 stars 0 forks source link

Could not bind to localhost (Apache Error) #2

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
-----------------
(OS 10013)An attempt was made to access a socket in a way forbidden by its 
access permissions.  : make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
-----------------

Solusi :

Buka file applicationHost.config pada : 

<C:\Windows\System32\inetsrv\config>

Ganti :
-----------------------------------------------------------------------
<binding protocol="http" bindingInformation="*:80:" />
<binding protocol="net.msmq" bindingInformation="localhost" />
<binding protocol="msmq.formatname" bindingInformation="localhost2" />
-----------------------------------------------------------------------

Menjadi:

<bindings>
<binding protocol="http" bindingInformation="*:90:" />
<binding protocol="net.tcp" bindingInformation="808:*" />
<binding protocol="net.pipe" bindingInformation="*" />
<binding protocol="net.msmq" bindingInformation="localhost2" />
<binding protocol="msmq.formatname" bindingInformation="localhost2" />
</bindings>

Kemudian save.

Original issue reported on code.google.com by isa.m.sa...@gmail.com on 4 Apr 2012 at 1:16

GoogleCodeExporter commented 8 years ago
<binding protocol="http" bindingInformation="*:80:" />
<binding protocol="net.msmq" bindingInformation="localhost" />
<binding protocol="msmq.formatname" bindingInformation="localhost" />

Maaf, itu yang :80 diganti :90 terus disave sudah bisa dibuka jika offline 
dengan hanya mengetikkan localhost saja dibrowser.

Original comment by transmis...@gmail.com on 21 Aug 2013 at 3:28