上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: swoole异步队列任务执行流程 swoole异步队列任务执行流程 阅读全文
posted @ 2022-04-24 10:03 zakun 阅读(41) 评论(0) 推荐(0)
摘要: Linux如何将用户从一个组中移除 Linux如何将用户从一个组中移除 gpasswd -d userName groupName id用来查看用户属性 [root@gl gl]# id root uid=0(root) gid=0(root) groups=0(root),1000(gl) [root@gl gl]# gpasswd 阅读全文
posted @ 2022-04-20 13:52 zakun 阅读(694) 评论(0) 推荐(1)
摘要: Nginx中root和alias的区别 Nginx中root和alias的区别 root与alias主要区别在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上 root的处理结果是:root路径+location路径 alias的处理结果是:alias路径替换location路径 ali 阅读全文
posted @ 2022-04-20 11:29 zakun 阅读(416) 评论(0) 推荐(0)
摘要: nginx跳转index.php两种方式 nginx跳转index.php两种方式 方式一 if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } 方式二 try_files $uri $uri/ /index.php$is_args$args; 阅读全文
posted @ 2022-04-20 10:43 zakun 阅读(930) 评论(0) 推荐(0)
摘要: 在CentOS 7系统上安装PHP 7.4 在CentOS 7系统上安装PHP 7.4 添加EPEL和REMI存储库和软件源 yum -y install epel-release yum -y install https://rpms.remirepo.net/enterprise/remi-release-7.rpm 安装YUM管理工具 阅读全文
posted @ 2022-04-18 14:29 zakun 阅读(1599) 评论(0) 推荐(0)
摘要: Docker查看镜像的所有标签 docker查看镜像的所有标签 #!/bin/sh repo_url=https://registry.hub.docker.com/v1/repositories image_name=$1 curl -s ${repo_url}/${image_name}/tags | json_reforma 阅读全文
posted @ 2022-03-30 17:12 zakun 阅读(687) 评论(0) 推荐(0)
摘要: 虚拟IP技术-ip地址漂移技术 虚拟IP技术-ip地址漂移技术 虚拟IP 在 TCP/IP 的架构下,所有想上网的电脑,不论是用何种方式连上网路,都必须要有一个唯一的 IP-address。事实上IP地址是主机硬件地址的一种抽象,简单的说,MAC地址是物理地址,IP地址是逻辑地址。 虚拟IP,就是一个未分配给真实主机的IP,也就是 阅读全文
posted @ 2022-02-22 11:40 zakun 阅读(995) 评论(0) 推荐(0)
摘要: 并发连接数和请求数的区别 并发连接数和请求数的区别 概念 并发连接数-SBC(Simultaneous Browser Connections) 并发连接数指的是客户端向服务器发起请求,并建立了TCP连接。每秒钟服务器链接的总TCP数量,就是并发连接数。 请求数-QPS(Query Per Second)/RPS(Reque 阅读全文
posted @ 2022-02-18 14:11 zakun 阅读(434) 评论(0) 推荐(0)
摘要: RabbitMQ-发布订阅 RabbitMQ-发布订阅 https://www.rabbitmq.com/tutorials/tutorial-three-php.html Exchanges In previous parts of the tutorial we sent and received messages to 阅读全文
posted @ 2022-02-16 15:54 zakun 阅读(54) 评论(0) 推荐(0)
摘要: RabbitMQ-工作队列 RabbitMQ-工作队列 https://www.rabbitmq.com/tutorials/tutorial-two-php.html Message acknowledgmen Message acknowledgments were previously turned off by our 阅读全文
posted @ 2022-02-16 15:07 zakun 阅读(76) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
返回顶部