首页
未分类
Code
PHP
C/C++
Python
HTML/CSS
Vue
Uni-App
Android
Java
正则
Tools
Git、GitHub
MacOS
Objective-C
iOS
Linux
Mysql
Linux
Nginx
Server
Windows
联系
关于
ABin' Blog
好记性不如烂笔头
累计撰写
129
篇文章
累计创建
5
个标签
累计收到
1
条评论
栏目
首页
未分类
Code
PHP
C/C++
Python
HTML/CSS
Vue
Uni-App
Android
Java
正则
Tools
Git、GitHub
MacOS
Objective-C
iOS
Linux
Mysql
Linux
Nginx
Server
Windows
联系
关于
目 录
CONTENT
以下是
ABin
的文章
Mac PHP配置Redis扩展
下载Redis扩展 -> Redis扩展下载 我Redis版本是7.0.0,选择的是最新Redis-5.3.7.tgz 下载完成后解压 cd redis-5.3.7/redis-5.3.7 在解压的R
2022-06-12
39
0
0
MacOS
Mac 用Brew 安装Redis
brew install redis 安装完成后重启一下终端 启动 redis-server 后台启动
2022-06-12
62
0
0
MacOS
Git克隆Gitee上的项目
克隆一个gitee 上的项目 克隆公有项目时不需要密码 git clone https://gitee.com/Coder_ABin/testGit.git Cloning into 'testGit'... remote: Enumerating objects: 10, done. remote
2022-06-12
45
0
0
Git、GitHub
SSH 生成RSA私钥、公钥
D: 生成rsa公钥和密钥 起名: id_rsa_demo 文件已经存在了,提示是否覆盖 (不存在则跳过此步骤) 是否设置密码,不设置直接 回车 2次
2022-06-08
64
0
0
Git、GitHub
Linux
Server
MacOS
问题解决: 'appstream' 下载元数据失败 : Cannot prepare internal mirrorlist: No URLs in mirrorlist
yum 源的根目录 /etc/yum.repos.d/ 修改所有的CentOS文件内容 sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* sed -i 's|#baseurl=http://mirror.centos.org
2022-06-07
67
0
0
Linux
Server
SSH配置公钥无需密码连接服务器
0.无需输入密码连接 生成rsa 文件 请参阅->SSH 生成RSA私钥、公钥 1.本地 id_rsa添加到本地 (如果密钥设置了密码会让你输入密码)
2022-06-07
62
0
0
Linux
MacOS
Mac Brew 安装 youtube-dl
brew install youtube-dl 报错 python@3.10: the bottle needs the Apple Command Line Tools to be installed. You can install them, if desired, with:
2022-06-06
57
0
0
MacOS
Mac Svn update 后Windows 无法更新
报错: '.' is not valid as filename in directory 原因是Windows文件夹不能用 “\/:*?"<>|”作为文件夹名称 把带有特殊字符的文件夹删除、或者重命名后 Commit 一下 Windows就可以更新了 #删除 svn rm
2022-06-06
28
0
0
MacOS
Mysql 重置密码
mysql 重置密码 ; 重置MySQL root 密码: 当忘记密码,或者想要强行重置 MySQL 密码的时候,可以像下面这样: 1.停止 MySQL 服务 sudo /usr/local/mysql/support-files/mysql.server stop //当停止失败 见下边 如
2022-06-04
46
0
0
Mysql
Vim 基本命令
vim text.txt 打开text.txt 这个文件 如果没有则会创建一个text.txt 文件 共分为三种模式,分别是命令模式,输入模式和底线命令模式 新打开的文件就是在命令模式 命令模式: h j k l 对应的是 光标往左、下、上、右 在命令模式下 按 i
2022-06-04
64
0
0
Linux
1
...
9
10
11
12
13