您好,登錄后才能下訂單哦!
本篇文章為大家展示了如何在Linux中安裝Swoole,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。
下載好放到/usr/local/src下,解壓縮:
tar -zxvf swoole-2.2.0.tgz
準(zhǔn)備擴(kuò)展安裝編譯環(huán)境:
phpize
查看php-config位置:
find / -name php-config
配置:(--with-php-config==后面是你自己的php-config位置)
./configure --with-php-config=/www/server/php/72/bin/php-config
編譯安裝:
make && make install
在php.ini里面加一行 :
extension = swoole.so
使用 php -m 命令查看swoole擴(kuò)展已經(jīng)安裝成功:
查看phpinfo信息:
(測試前說明:以下使用的端口,要確認(rèn)服務(wù)器放行,寶塔環(huán)境還需要添加安全組規(guī)則)
【創(chuàng)建TCP服務(wù)器】
創(chuàng)建server.php:
<?php //創(chuàng)建Server對象,監(jiān)聽 127.0.0.1:9501端口 $serv = new swoole_server("127.0.0.1", 9501); //監(jiān)聽連接進(jìn)入事件 $serv->on('connect', function ($serv, $fd) { echo "Client: Connect.\n"; }); //監(jiān)聽數(shù)據(jù)接收事件 $serv->on('receive', function ($serv, $fd, $from_id, $data) { $serv->send($fd, "Server: ".$data); }); //監(jiān)聽連接關(guān)閉事件 $serv->on('close', function ($serv, $fd) { echo "Client: Close.\n"; }); //啟動服務(wù)器 $serv->start();
啟動TCP服務(wù):
php server.php
查看9501端口已被監(jiān)聽:
netstat -an | grep 9501
使用telnet連接TCP服務(wù),輸入hello,服務(wù)器返回hello即測試成功:
telnet 127.0.0.1 9501
(如果telnet工具沒有安裝,執(zhí)行yum install telnet
、yum install telnet-server
)
也可以寫一個TCP客戶端連接TCP服務(wù)器端:
創(chuàng)建tcp_client.php:
<?php //創(chuàng)建Client對象,監(jiān)聽 127.0.0.1:9501端口 $client = new swoole_client(SWOOLE_SOCK_TCP); if(!$client->connect("127.0.0.1" ,9501)){ echo "連接失敗"; exit; } //向tcp服務(wù)器發(fā)送消息 fwrite(STDOUT, "請輸入:"); $msg = trim(fgets(STDIN)); $client->send($msg); //接受tcp服務(wù)器消息 $result = $client->recv(); echo $result;
啟動tcp客戶端:
php tcp_client.php
測試結(jié)果:
【創(chuàng)建UDP服務(wù)器】
創(chuàng)建udp_server.php:
<?php //創(chuàng)建Server對象,監(jiān)聽 127.0.0.1:9502端口,類型為SWOOLE_SOCK_UDP $serv = new swoole_server("127.0.0.1", 9502, SWOOLE_PROCESS, SWOOLE_SOCK_UDP); //監(jiān)聽數(shù)據(jù)接收事件 $serv->on('Packet', function ($serv, $data, $clientInfo) { $serv->sendto($clientInfo['address'], $clientInfo['port'], "Server ".$data); var_dump($clientInfo); }); //啟動服務(wù)器 $serv->start();
啟動UDP服務(wù):
php udp_server.php
查看9502端口已被監(jiān)聽:
netstat -an | grep 9502
使用netcat連接UDP服務(wù),
輸入hello,服務(wù)器返回hello即測試成功(CentOS):
nc -u 127.0.0.1 9502
(如果沒有安裝netcat監(jiān)聽器,執(zhí)行yum install -y nc
)
【創(chuàng)建Web服務(wù)器】
創(chuàng)建http_server.php:
<?php $http = new swoole_http_server("0.0.0.0", 9501); //配置靜態(tài)文件根目錄(可選) $http->set([ 'document_root' => '/www/wwwroot/lwsblog', 'enable_static_handler' => true, ]); $http->on('request', function ($request, $response) { var_dump($request->get, $request->post); //設(shè)置header $response->header("Content-Type", "text/html; charset=utf-8"); //設(shè)置cookie $response->cookie("name", "lws", time()+3600); //發(fā)送Http響應(yīng)體,并結(jié)束請求處理。 $response->end("<h2>Hello Swoole. #".rand(1000, 9999)."</h2>"); }); $http->start();
啟動服務(wù):
php http_server.php
(如果9501端口已經(jīng)被占用查看進(jìn)程PID,殺死進(jìn)程:)
lsof -i:9501
kill 9013
瀏覽器訪問主機(jī)地址:端口號,得到程序預(yù)期結(jié)果即測試成功:
【創(chuàng)建WebSocket服務(wù)器】
創(chuàng)建ws_server.php:
<?php //創(chuàng)建websocket服務(wù)器對象,監(jiān)聽0.0.0.0:9501端口 $ws = new swoole_websocket_server("0.0.0.0", 9501); //配置靜態(tài)文件根目錄(可選) $ws ->set([ 'document_root' => '/www/wwwroot/lwsblog', 'enable_static_handler' => true, ]); //監(jiān)聽WebSocket連接打開事件 $ws->on('open', function ($ws, $request) { var_dump($request->fd, $request->get, $request->server); $ws->push($request->fd, "hello, welcome\n"); }); //監(jiān)聽WebSocket消息事件 $ws->on('message', function ($ws, $frame) { echo "Message: {$frame->data}\n"; $ws->push($frame->fd, "server: {$frame->data}"); }); //監(jiān)聽WebSocket連接關(guān)閉事件 $ws->on('close', function ($ws, $fd) { echo "client-{$fd} is closed\n"; }); $ws->start();
運(yùn)行程序:(這里還是要確認(rèn)監(jiān)聽的端口沒有被占用,如果被占用查看進(jìn)程PID,殺死進(jìn)程)
php ws_server.php
前端頁面js監(jiān)聽:(127.0.0.1改成你的主機(jī)地址)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>WebSocket</title> </head> <body> </body> <script type="text/javascript"> var wsServer = 'ws://127.0.0.1:9501'; var websocket = new WebSocket(wsServer); websocket.onopen = function (evt) { console.log("Connected to WebSocket server."); }; websocket.onclose = function (evt) { console.log("Disconnected"); }; websocket.onmessage = function (evt) { console.log('Retrieved data from server: ' + evt.data); }; websocket.onerror = function (evt, e) { console.log('Error occured: ' + evt.data); }; </script> </html>
使用谷歌瀏覽器訪問前端頁面:
服務(wù)器端收到請求信息:
上述內(nèi)容就是如何在Linux中安裝Swoole,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。