最新发布第3页
Goland使用hmac-sha256-麦兜博客

Goland使用hmac-sha256

hmac是基于hash算法加上一个秘钥key,可以约等于对数据加了盐值(salt)后再做hash算法运算,常用的hash算法有md5,sha256等,对应的就有hmac-md5,hmac-sha256 func hmacSha256(data string, secre...
2年前
1918
Nginx配置文件中的变量含义-麦兜博客

Nginx配置文件中的变量含义

$remote_addr 直接请求者ip$http_x_forwarded_for 客户端请求ip$remote_user 客户端用户名称$time_local 服务端时间和时区$request 请求的路径和协议$status 本次请求的响应状态$body_bytes_sen...
2年前
2108
Ubuntu系统ufw管理防火墙-麦兜博客

Ubuntu系统ufw管理防火墙

ufw enable 开启防火墙ufw disalbe 关闭防火墙ufw allow 22/tcp 放行端口ufw delete allow 22/tcp 删除端口ufw reload 重新加载防火墙配置ufw status 查看防火墙配置及端口
2年前
12510
Debian10系统修改主机名-麦兜博客

Debian10系统修改主机名

1.修改/etc/hostname文件中的内容为新主机名2.修改/etc/hosts文件中对应的之前的主机名为新主机名3.执行hostname [新主机名] 命令临时修改,否则要下次重启生效
2年前
17613
Centos7更新grub配置-麦兜博客

Centos7更新grub配置

在Debian系操作系统,修改grub配置后,要想使其生效用的命令是update-grub,但在Centos下会提示命令找不到,可使用以下命令来代替 grub2-mkconfig -o /boot/grub2/grub.cfg
2年前
14311
对list集合分页-麦兜博客

对list集合分页

Java代码 public static <T> List<T> startPage(List<T> list, Integer pageNum, Integer pageSize) { Objects.requireNonNull(list); if (list.isEmpty()) { return Collections.empt...
2年前
21214
C++实现split函数-麦兜博客

C++实现split函数

#include <string> #include <vector> vector<string> split(string s, string p){ vector<string> res; std::string::size_type i = 0; std::string::size_type found = s.find(p)...
2年前
2387
linux命令-麦兜博客

linux命令

#列出文件信息 ls #改变目录 cd #编辑文件 vi #编辑文件 nano #查看ip配置 ip a #查看ip配置 ifconfig #查看文件 head #查看文件 tail #查看文件 cat #修改文件权限 chmod #修改文件的拥有者 ch...
2年前
31811
test-麦兜博客

test

123
2年前
118014