Loading...
netstat -n | grep "^tcp" | awk '{print $6}' | sort | uniq -c | sort -n vim /etc/sysctl.conf #编辑文件,加入以下内容: net.ipv4.tcp_syncookies = 1 net.ipv4.tcp_tw_reuse = 1 net.ipv4.tcp_tw_recycle = 1...
wireguard安装yum install epel-release elrepo-release yum install yum-plugin-elrepo yum install kmod-wireguard wireguard-tools yum install iptables-services注意:安装完后重启系统所有节点机器内核开启路由转发sysctl -w net.ipv4....
Prometheus-Grafana docker-compose启动方法,已测试可用InstallCreate .env:ADMIN_USER=admin ADMIN_PASSWORD=admin Clone this repository on your Docker host, cd into test directory and run compose up:git clone ...
https://pkg.go.dev/github.com/harukasan/go-libwebp#section-readmeyum install libwebp-tools libwebp不确定是否安装,如果安装需要下载这个地址http://downloads.webmproject.org/releases/webp/libwebp-0.5.0.tar.gz
package main import ( "fmt" "time" ) func main() { go func() { fmt.Println("Goroutine 1") }() go func() { fmt.Println("Goroutine 2") ...