2016-01-25 38 views
8

ho un problema strano e io non riesco a trovare una soluzione o qualcosa di più vicino al problema che sto avendo,PHP connessione socket TCP Limit - server Windows

Qui è la cosa, ho uno script scoket eseguire tramite php sulla riga di comando, accetta la connessione e legge i dati in formato JSON dai client di app mobili e invia la risposta appropriata in JSON.

Tutto funziona correttamente, tranne che il numero di connessione non supera la connessione 256.

Mi piacerebbe sapere perché è così, e come posso risolverlo? Lo sono stato in così tanti giorni, ma senza fortuna!

Ecco lo script frammento

<?php 

date_default_timezone_set("UTC"); 
$server = stream_socket_server("tcp://192.168.1.77:25003", $errno, $errorMessage); 

if (!$server) { 
    die("$errstr ($errno)"); 
} 

echo "Server started.."; 
echo "\r\n"; 

$client_socks = array(); 

while (true) { 
    //prepare readable sockets 
    $read_socks = $client_socks; 
    $read_socks[] = $server; 

    //start reading and use a large timeout 
    if (!stream_select ($read_socks, $write, $except, 10000)) { 
     die('something went wrong while selecting'); 
    } 

    //new client 
    if (in_array($server, $read_socks)) { 
     $new_client = stream_socket_accept($server); 

     if ($new_client) { 
      //print remote client information, ip and port number 
      echo 'Connection accepted from ' . stream_socket_get_name($new_client, true); 
      echo "\r\n"; 

      $client_socks[] = $new_client; 
      echo "Now there are total ". count($client_socks) . " clients"; 
      echo "\r\n"; 
     }   

     // echo stream_socket_get_name($new_client, true); 
     //delete the server socket from the read sockets 
     unset($read_socks[array_search($server, $read_socks)]); 
    } 

    $data = ''; 
    $res = ''; 

    //message from existing client 
    foreach($read_socks as $sock) { 
     stream_set_timeout($sock, 1000); 
     while($resp = fread($sock, 25000)) { 
      $data .= $resp; 
      if (strpos($data, "\n") !== false) { 
       break; 
      } 
     } 

     $info = stream_get_meta_data($sock);  

     if ($info['timed_out']) { 
      unset($client_socks[array_search($sock, $client_socks)]); 
      @fclose($sock); 
      echo 'Connection timed out!'; 
      continue; 
     }  

     $client = stream_socket_get_name($sock, true); 

     if (!$data) { 
      unset($client_socks[array_search($sock, $client_socks)]); 
      @fclose($sock);   

      echo "$client got disconnected"; 
      echo "\r\n"; 
      continue; 
     } 

     //send the message back to client 
     $decode = json_decode($data); 


     $encode = json_encode($res); 
     fwrite($sock,$encode."\n");  
    } 
} 

P.S .: Quello che ho fatto è, vasta ricerca sul tema, e andai articolo come questi, http://smallvoid.com/article/winnt-tcpip-max-limit.html e due dozzine altri.

Ho un Windows 7 in esecuzione questa cosa + WAMP 2,5 che corre php 5.5.12

+0

Ecco lo screenshot del prompt dei comandi, http://prntscr.com/9ul9yh –

+0

Vergogna, non hai seguito il link in fondo all'articolo che hai citato - http://smallvoid.com/article/winnt- network-connection-limit.html – symcbean

+0

buddy, l'ho fatto in realtà e mi sono stancato di aggiungere le parole D citate. ma non serve! Sto usando Windows 8 come server puoi aiutare? –

risposta

0

E 'nulla a che fare con il tuo codice, si tratta di una "caratteristica" di MS Windows per farvi comprare l'edizione server (o aggiornamento a un diverso sistema operativo). Funzionalmente non c'è alcuna differenza tra il server e le edizioni desktop del kernel NT (alcune modifiche di ottimizzazione diverse) è solo un mezzo per garantire che si sta rispettando i termini della licenza.

+0

In realtà ho provato la stessa cosa su un server Windows da Azure, stessa cosa! che tipo di server dovrei cercare per qualsiasi specifica o qualcosa del genere? –

+1

@DragonWarrior Get linux;) Windows è praticamente inutile per un server se non si intende eseguire IIS. – RandomSeed