摘要: package main import "fmt" // MyInt ~表示不仅支持int8, 还支持int8的衍生类型int8A和int8B type MyInt interface { int | ~int8 | int16 | int32 | int64 } func getMaxNum[T 阅读全文
posted @ 2023-10-20 11:15 朝阳1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 首先新建Service,名称叫做server-api vim /lib/systemd/system/server-api.service 或者 vim /etc/systemd/system/server-api.service [Unit] Description=server api [Ser 阅读全文
posted @ 2023-10-20 11:09 朝阳1 阅读(23) 评论(1) 推荐(0) 编辑
摘要: 项目目录 ├── asset // 静态资源文件 │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ └── jquery.js ├── go.mod ├── go.sum ├── html // html模版文件 │ └── index.html └─ 阅读全文
posted @ 2023-10-20 10:47 朝阳1 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 安装cerbot apt install certbot 执行 you.cn 换成对应的域名 certbot certonly -d *.you.cn --manual --preferred-challenges dns --server https://acme-v02.api.letsencr 阅读全文
posted @ 2023-10-19 17:58 朝阳1 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 安装htpassed工具 yum -y install httpd-tools 或者 apt install apache2-utils 创建用户名和密码 htpasswd -c /etc/nginx/.htpasswd username 修改nginx配置文件 server { listen ; 阅读全文
posted @ 2023-10-19 15:15 朝阳1 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 创建服务器证书秘钥文件 [root@Nginx ~]# openssl genrsa -des3 -out server.key 1024 ... Enter pass phrase for server.key: # 输入密码 Verifying - Enter pass phrase for s 阅读全文
posted @ 2023-10-19 14:47 朝阳1 阅读(282) 评论(0) 推荐(0) 编辑
摘要: 1,借助linux系统命令 /usr/bin/uuidgen 1.1 代码 package main import ( "fmt" "log" "os/exec" ) func main(){ out,err := exec.Command("uuidgen").Output() if err!=n 阅读全文
posted @ 2023-10-19 10:45 朝阳1 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 创建账号 CREATE USER '账号'@'%' IDENTIFIED BY '密码'; mysql8的话需要改一下加密方式 ALTER USER '账号'@'%' IDENTIFIED WITH mysql_native_password BY '密码'; 创建数据库,必须要有库,不然无法绑定 阅读全文
posted @ 2023-10-19 10:27 朝阳1 阅读(135) 评论(0) 推荐(0) 编辑
摘要: UPDATE user SET age = CASE id WHEN 1 THEN 3 WHEN 2 THEN 4 WHEN 3 THEN 5 END WHERE id IN (1,2,3) php示例 $display_order = array( 1 => 4, 2 => 1, 3 => 2, 阅读全文
posted @ 2023-10-19 10:13 朝阳1 阅读(104) 评论(0) 推荐(0) 编辑
摘要: pecl安装 apt-get install libevent-dev -y # 如果无法安装,请尝试以下命令 # apt-get install libevent2-dev -y pecl install event 注意提示:Include libevent OpenSSL support [y 阅读全文
posted @ 2023-10-17 14:54 朝阳1 阅读(3) 评论(0) 推荐(0) 编辑