会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
kevin_yang123
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
34
下一页
2022年10月29日
mysql通过内网链接
摘要: 1,内网ssh链接 公钥访问 2.端口
阅读全文
posted @ 2022-10-29 09:38 kevin_yang123
阅读(6)
评论(0)
推荐(0)
编辑
2022年9月9日
查看linux防火墙端口是否开启
摘要: firewall-cmd --zone=public --list-port 查看linux 端口命令 netstat -ano
阅读全文
posted @ 2022-09-09 09:49 kevin_yang123
阅读(381)
评论(0)
推荐(0)
编辑
2022年9月8日
linux 查看端口是否存在命令
摘要: 第一: lsof -i:端口号 第二种: netstat -aptn
阅读全文
posted @ 2022-09-08 17:24 kevin_yang123
阅读(380)
评论(0)
推荐(0)
编辑
2022年8月11日
windows查找进程并且清除占用进程
摘要: 1.netstat -ano |findstr 6379 2.查找进程 tasklist |findstr 7792 (进程id) 3.杀死进程 ctrl+alt+del 服务管理 ->
阅读全文
posted @ 2022-08-11 09:35 kevin_yang123
阅读(344)
评论(0)
推荐(0)
编辑
windows 解决端口被占用的情况
摘要: 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
阅读(116)
评论(0)
推荐(0)
编辑
2022年8月10日
postman获取登录变量
摘要: 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
阅读(31)
评论(0)
推荐(0)
编辑
校验手机号码正则匹配
摘要: preg_match('/^(1[0-9])\d{9}$/', $Telephone) ? true : false;
阅读全文
posted @ 2022-08-10 10:19 kevin_yang123
阅读(32)
评论(0)
推荐(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
阅读(28)
评论(0)
推荐(0)
编辑
2022年7月29日
docker在windows 安装详细流程
摘要: 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
阅读(2277)
评论(0)
推荐(0)
编辑
docker 命令熟悉
摘要: docker ps 查询跑了那些进程 进入docker php容器 docker exce -it php bash 进入容器之后,执行一下nginx命令,使php跑起来 退出镜像, 查看容器有镜像 docker images 编辑docker国内镜像 "registry-mirrors": [ "
阅读全文
posted @ 2022-07-29 12:50 kevin_yang123
阅读(25)
评论(0)
推荐(0)
编辑
上一页
1
···
7
8
9
10
11
12
13
14
15
···
34
下一页