netstat命令 netstat命令显示各种网络相关信息,例如网络连接、路由表、接口统计信息、伪装连接、多播成员身份等。 语法 netstat [address_family_options] [--tcp|-t] [--udp|-u] [--raw|-w] [--listening|-l] [- ...
分类:
Web程序 时间:
2021-02-15 12:35:29
阅读次数:
0
PG可以一主多备,目前pg93s是主,pg93和pg93s2是备节点,在主上查询: postgres=# select usename,application_name,client_addr,state,sync_state,sync_priority from pg_stat_replicati ...
分类:
其他好文 时间:
2021-02-06 12:14:28
阅读次数:
0
今天运行redis服务端时候出现这个问题: D:\php\software\redis>redis-server.exe [484] 04 Dec 21:49:00.797 # Warning: no config file specified, using the default config. ...
分类:
其他好文 时间:
2021-01-21 11:00:18
阅读次数:
0
错误重现 redis安装报错:creating server tcp listening socket 127.0.0.1:6379: bind No error 笔者环境 系统版本:win10企业版 redis版本:3.2.100 安装方式 > redis.msi安装 解决方式 依次输入以下命令: ...
分类:
其他好文 时间:
2021-01-12 11:05:08
阅读次数:
0
一.测试Ceph集群节点之间的网络性能 在ceph01节点上运行: [root@openstack01 ~]# iperf3 -s -p 6900 Server listening on 6900 在ceph02节点上运行: [root@openstack02 ~]# iperf3 -c opens ...
分类:
其他好文 时间:
2020-12-15 12:25:40
阅读次数:
2
server { listen 80; server_name localhost; #charset koi8-r; #access_log /var/log/nginx/host.access.log main; location /static/ { alias /var/www/api/la ...
分类:
其他好文 时间:
2020-09-11 16:13:08
阅读次数:
52
TCP状态转移要点 TCP协议规定,对于已经建立的连接,网络双方要进行四次握手才能成功断开连接,如果缺少了其中某个步骤,将会使连接处于假死状态,连接本身占用的资源不会被释放。网络服务器程序要同时管理大量连接,所以很有必要保证无用连接完全断开,否则大量僵死的连接会浪费许多服务器资源。在众多TCP状态中 ...
分类:
其他好文 时间:
2020-07-26 15:24:00
阅读次数:
72
Nginx 的常用的命令 进入 nginx 目录中 cd /usr/local/nginx/sbin 1、查看 nginx 版本号 ./nginx -v 2、启动 nginx ./nginx 3、停止 nginx ./nginx -s stop Nginx 的配置文件 1、nginx 配置文件位置 ...
分类:
其他好文 时间:
2020-07-05 00:20:44
阅读次数:
72
监控docker 下载sysdig/sysdig docker pull sysdig/sysdig [root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE sysdig/sysdig latest 150a67c ...
分类:
其他好文 时间:
2020-06-13 00:14:56
阅读次数:
96
C:\Users\admin>netstat -ano|findstr 8088 TCP 0.0.0.0:8088 0.0.0.0:0 LISTENING 16888 TCP 127.0.0.1:8088 127.0.0.1:64254 ESTABLISHED 16888 TCP 127.0.0.1 ...
分类:
Web程序 时间:
2020-05-24 09:56:03
阅读次数:
54