如何在cmd上运行telnet时在浏览器上运行用于棘轮的shell脚本

时间:2013-12-02 11:40:56

标签: php ratchet

Telnet localhost 8080工作正常但之后我在localhost上创建shell脚本然后它在firefox和chrome中显示错误见下文

Firefox can't establish a connection to the server at ws://localhost:8080/. var conn = new WebSocket('ws://localhost:8080');

这是我的shell脚本

   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
   </script>
   <script>
   jQuery(document).ready(function(){
     var conn = new WebSocket('ws://localhost:8080');
    conn.onopen = function(e) {
     console.log("Connection established!");
    };

   conn.onmessage = function(e) {
    console.log(e.data);
     };
     });
   </script>

这是我的chat-server.php代码     “        

   require dirname(__DIR__) . '/vendor/autoload.php';

   $server = IoServer::factory(
    new HttpServer(
        new WsServer(
            new Chat()
        )
    ),
    8080
    );

   $server->run();'

shell脚本保存在根目录的info.php中,而chat-server.php保存在root / bin /目录下,但始终显示相同的错误,我不知道如何在localhost.please帮助下运行棘轮shell脚本!

1 个答案:

答案 0 :(得分:0)

今天我和我斗争了好几个小时,我希望这对某人有帮助。

我的服务器设置:Ubuntu 14.04上的Apache / 2.4.18。

var conn = new WebSocket('ws://xxx.xxxx.xxx:8888');

错误:

  

失败:WebSocket打开握手超时。

我最终没有正确配置端口并需要运行:

iptables -I INPUT 1 -i eth0 -p tcp --dport 8888 -j ACCEPT