最新发布第2页
排序
Centos7使用firewall-cmd管理防火墙
先查看是否开启firewalld systemctl status firewalld 如果是未开启状态先要启用firewalld,执行以下命令开启firewalld systemctl start firewalld 查看已放行的端口 firewall-cmd --zone=publi...
Debian10开启bbr
Debian10一般默认内核(4.9以上)就含有bbr模块,我们只需要修改配置使其生效就可以了 1.使用编辑器修改系统配置文件/etc/sysctl.conf,到文件最后添加这2行配置 net.core.default_qdisc=fq net.i...
Goland使用hmac-sha256
hmac是基于hash算法加上一个秘钥key,可以约等于对数据加了盐值(salt)后再做hash算法运算,常用的hash算法有md5,sha256等,对应的就有hmac-md5,hmac-sha256 func hmacSha256(data string, secre...
Nginx配置文件中的变量含义
$remote_addr 直接请求者ip$http_x_forwarded_for 客户端请求ip$remote_user 客户端用户名称$time_local 服务端时间和时区$request 请求的路径和协议$status 本次请求的响应状态$body_bytes_sen...
Ubuntu系统ufw管理防火墙
ufw enable 开启防火墙ufw disalbe 关闭防火墙ufw allow 22/tcp 放行端口ufw delete allow 22/tcp 删除端口ufw reload 重新加载防火墙配置ufw status 查看防火墙配置及端口
Debian10系统修改主机名
1.修改/etc/hostname文件中的内容为新主机名2.修改/etc/hosts文件中对应的之前的主机名为新主机名3.执行hostname [新主机名] 命令临时修改,否则要下次重启生效
Centos7更新grub配置
在Debian系操作系统,修改grub配置后,要想使其生效用的命令是update-grub,但在Centos下会提示命令找不到,可使用以下命令来代替 grub2-mkconfig -o /boot/grub2/grub.cfg
对list集合分页
Java代码 public static <T> List<T> startPage(List<T> list, Integer pageNum, Integer pageSize) { Objects.requireNonNull(list); if (list.isEmpty()) { return Collections.empt...
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)...
linux命令
#列出文件信息 ls #改变目录 cd #编辑文件 vi #编辑文件 nano #查看ip配置 ip a #查看ip配置 ifconfig #查看文件 head #查看文件 tail #查看文件 cat #修改文件权限 chmod #修改文件的拥有者 ch...