首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
过客
累计撰写
417
篇文章
累计创建
55
个标签
累计收到
0
条评论
栏目
首页
系统
Android
Mac&iOS
Windows
Debian
Ubuntu
CentOS
ProxmoxVE
编程语言
Go
Js/Ts
Java
C#
C/C++
软件使用
大模型
博客
Office
Docker
Nginx
MySQL
MongoDB
工具
IP查询接口
随笔
归档
动态
留言
关于
目 录
CONTENT
以下是
软件使用
相关的文章
git: connect to host github.com port 22: Connection timed out
好几年没用github了,今天提交代码发现直接报错了connect to host github.com port 22: Connection timed out 后面看了一下github说明,他们https模式的提交,启用了ssh协议,但ssh协议使用的是443端口而不是默认的22端口。 1.
2024-02-02
5
0
0
软件使用
解决Selinux阻止Nginx访问服务
问题 开启Selinux后,Nginx非默认目录的时候会被Selinux阻止,看nginx日志为13: Permission denied 2022/11/12 01:18:19 [error] 8776#8776: *9 "/home/web/index.html" is forbidden (1
2022-11-12
17
0
0
Nginx
Ftp报错200 Switching to ASCII mode,227 Entering Passive Mode
用win自带的Internet Explorer 访问ftp的时候报错:200 Switching to ASCII mode,227 Entering Passive Mode 解决办法是,设置Internet Explorer 开启ftp被动模式。
2022-11-12
7
0
0
软件使用
SVN Cleanup报错:Failed to run the WC DB work queue associated with xxx
在使用svn过程中,删了本地文件+svn up冲突后,突然cleanup时报错Failed to run the WC DB work queue associated with xxx 解决版本就是清理svn的执行队列。 svn本地项目数据库为sqlite3,可以安装可视化工具SQLiteStud
2022-11-10
7
0
0
软件使用
用python替换文件中指定字符串
先以只读模式打开后,对文件每一行进行readlines()操作,并保存到内存中。然后随之关闭。 再以'w+'方式进行读写打开,对已经保存的列表用re.sub()进行替换操作,并用f.writelines()函数写入。 import re f=open('guoke.txt','r') allline
2022-09-14
8
0
0
软件使用
安装 npm 包的旧版本
查看软件包所有的版本 npm view <package> versions >npm view protobufjs versions [ '0.0.0', '0.9.1', '0.9.3', '0.9.4', '0.9.5', '0.9.6', '0.9.7',
2022-09-07
5
0
0
软件使用
查看Docker镜像仓库中镜像版本信息
在Docker中查看Latest的镜像具体版本和查看容器用到的镜像版本 1.查看容器使用的镜像具体版本 docker inspect mongo|grep -i version 2.查看镜像具体版本 docker image inspect mongo:latest|grep -i version
2022-09-05
6
0
0
Docker
Redis报错:WRONGTYPE Operation against a key holding the wrong kind of value
Redis写入Key值的时候报错WRONGTYPE Operation against a key holding the wrong kind of value。 从字面意思就能看出来,写入的key存在,且redis上的值类型和写入的值类型不匹配。 解决办法就是根据自己的逻辑,删除原redis上的
2022-07-15
7
0
0
软件使用
用vlookup来引用为何有的空值会显示0
假设提问中的公式是: =VLOOKUP(C1,A:B,2,0) 这是因为EXCEL 对空白的单元格是当作0运算的,如果遇上这情况也希望返回空值,修改公式为: =VLOOKUP(C1,A:B,2,0)&"" 就是在原公式后面加 &"" 本文转自:https://blog.csdn.net/lond
2022-05-29
35
0
0
Office
清楚DNS缓存
Win中 打开cmd命令窗口输入: ipconfig /flushdns Mac中 打在终端,直接输入命令: sudo killall -HUP mDNSResponder Ubuntu中 sudo systemd-resolve --flush-caches CentOS中 sudo sys
2022-05-08
8
0
0
软件使用
1
2
3
4
5
...
14