2022年10月29日
摘要:
1,内网ssh链接 公钥访问 2.端口
阅读全文
posted @ 2022-10-29 09:38
kevin_yang123
阅读(10)
推荐(0)
2022年9月9日
摘要:
firewall-cmd --zone=public --list-port 查看linux 端口命令 netstat -ano
阅读全文
posted @ 2022-09-09 09:49
kevin_yang123
阅读(400)
推荐(0)
2022年9月8日
摘要:
第一: lsof -i:端口号 第二种: netstat -aptn
阅读全文
posted @ 2022-09-08 17:24
kevin_yang123
阅读(420)
推荐(0)
2022年8月11日
摘要:
1.netstat -ano |findstr 6379 2.查找进程 tasklist |findstr 7792 (进程id) 3.杀死进程 ctrl+alt+del 服务管理 ->
阅读全文
posted @ 2022-08-11 09:35
kevin_yang123
阅读(365)
推荐(0)
摘要:
1.查找黑窗口dos 2.查看运行cmd 3.使用netstat命令查看windows系统中占用80端口的进程号:C:\Users\Administrator>netstat -aon|findstr 80, 4.查看使用进程 【tasklist】查看端口都是哪些进程在使用 tasklist | f
阅读全文
posted @ 2022-08-11 09:13
kevin_yang123
阅读(145)
推荐(0)
2022年8月10日
摘要:
pm.test("登录成功", function () { var jsonData = pm.response.json(); pm.expect(jsonData.success).to.eql(true); //设置token postman.setEnvironmentVariable("B
阅读全文
posted @ 2022-08-10 10:55
kevin_yang123
阅读(40)
推荐(0)
摘要:
preg_match('/^(1[0-9])\d{9}$/', $Telephone) ? true : false;
阅读全文
posted @ 2022-08-10 10:19
kevin_yang123
阅读(39)
推荐(0)
2022年8月8日
摘要:
public function regionCity(){ $cacheKey = 'region_city_cache'; $data = Cache::get($cacheKey); if( empty($data)) { $city = RegionCity::where('id','>',
阅读全文
posted @ 2022-08-08 14:57
kevin_yang123
阅读(36)
推荐(0)
2022年7月29日
摘要:
1.下载安装包 https://www.docker.com/products/docker-desktop/ 选择windows版本 2.解决docker 在windows虚拟化问题 https://docs.microsoft.com/zh-cn/windows/wsl/install-manu
阅读全文
posted @ 2022-07-29 12:57
kevin_yang123
阅读(2420)
推荐(0)
摘要:
docker ps 查询跑了那些进程 进入docker php容器 docker exce -it php bash 进入容器之后,执行一下nginx命令,使php跑起来 退出镜像, 查看容器有镜像 docker images 编辑docker国内镜像 "registry-mirrors": [ "
阅读全文
posted @ 2022-07-29 12:50
kevin_yang123
阅读(31)
推荐(0)