作者:1098502132_027279 | 来源:互联网 | 2023-09-01 10:36
swoole安装第一步githubswoolegitcloneswoole第二步phpize命令后swoole文件夹的文件会发生变化.configure--help.con
swoole 安装 第 一步 github swoole git clone swoole
第二步 phpize命令后 swoole文件夹的文件会发生变化
./configure --help
./configure --with-php-config={php-version-config}
./configure --with-php-config=/usr/bin/php-config
make
make install
返回上一级目录
cd -
客户端 连接tcp
telnet 12.0.0.1 8800
查看进程端口
netstat -anp |grep 9501
杀死一个进程
kill 8888(进程号)
显示当前的路径
pwd
查看进程
ps aft | grep tcp.php
实时查看日志文件内容
taif -f access.log
解压 tar.gz 文件
tar -zxvf filename.tar.gz
解压zip文件
unizp filename.zip
查看swoole是否支持第三方扩展
php --ri swoole
安装hiredis
make -j
./configure --with-config-php=/etc/bin/php --enable-async-redis
make clean
make -j
make install
查看进程下面的子进程。22727表示进程的PID
pstree -p 22727
不知道是啥
ps aft | grep http_verser
更改子目录以及子文件的权限
chmod -R 777 dir
查看文件的进程
ps aux | grep process.php
phpize 是生成/configure 文件的
ubuntu 执行shell
$shell = 'netstat -anp | grep ' .8811 ; $result = shell_exce ( $shell ) ; dump ( $result ) ;
$shell = 'netstat -anp 2>/dev/null | grep ' .8811 . ' | grep LISTEN | wc -l' ; $result = shell_exce ( $shell ) ; dump ( $result ) ;
ubuntu 后台执行脚本
nohup /var/bin/php script.php > /consolePath/log.txt &
/consolePath/log.txt 如果有输出的话 就输出到这个文件中
查看当前文件是否在后台挂起执行
ps aux |grep script.php
查看硬盘的使用情况
df -h
内网ip
hostname -i