1、gy1:表示你新定义的名字 hostnamectl set-hostname gy1 2、查看主机名字 hostname
1、项目地址:【点击进入】 2、安装git Ubuntu/Debian系统 apt install git -yCopy CentOS系统 yum install git -yCopy 3、一键安装脚本 git clone https://github.com/slobys/SSL-Renewal.git /tmp/acme && …
1.CloudFlare优选IP网站 Cloudflare IP 批处理测试工具 (flares.cloud) 2.CloudFlare 优选IP开源软件 Releases · XIU2/CloudflareSpeedTest (github.com) 3.CloudFlare 优选域名GitHub开源软件 jeffreycayao/pinginf…
wget -q0- bench.sh | bash curl -Lso- bench.sh | bash
{ "api": { "services": [ "HandlerService", "LoggerService", "StatsService" ], "tag": "api" }, "inbounds": [ { "listen": "127.0.0.1", "port": 62789, "protocol": "dokodemo-door"…
公网ip curl http://httpbin.org/ip 或者 curl ifconfig.me 内网ip ip addr | grep inet 或者 ifconfig | grep inet
1、一键安装脚本 bash <(curl -fsSL https://raw.githubusercontent.com/Aurora-Admin-Panel/deploy/main/install.sh) 2、中转服务器原理 3、配置问题 vless协议:ws、tls、ws+tls 均可用 vmess协议:ws可用 tls、ws+tls不适…
Lambda表达式 明确指出参数类型 (int a, int b) -> a + b; 代码多余一行,不能省略{}以及最后一行的return (int a, int b) -> {int c = a + b; return c;} Lambda1 lambda = (a, b) -> a + b; interface…
1、Centos查看端口占用 比如查看80端口占用情况: lsof -i tcp:80 2、列出所有端口 netstat -ntlp 3、开启端口 3.1 方法一: 写入修改 /sbin/iptables -I INPUT -p tcp --dport 80 -j ACCEPT 保存修改 /etc/init.d/iptables save 重启防火…
MySQL开启远程访问权限 1、切换数据库 use mysql; 2、给root用户分配远程访问权限 grant all privileges on *.* to 'root'@'%'; #创建数据库用户dmsTest,并授予远程连接权限。 create user 'dmsTest'@'%' identified by 'Ecs@12…