05 2020 档案
摘要:需要有java、maven、springboot、阿里云域名使用经验、以及拥有一个域名 pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=
阅读全文
摘要:拉取镜像 https://gitea.io/zh-cn/ docker pull gitea/gitea 如果遇到拉取镜像超时,请更换源 https://www.cnblogs.com/binz/p/11790948.html 文章底部有更换源说明 创建目录 mkdir -p /home/docke
阅读全文
摘要:1、拉取镜像 docker pull sjqzhang/go-fastdfs 2、创建挂载目录 mkdir -p /home/dockerdata/gofastdfs/data 3、运行容器 docker run -d --restart=always --name gofastdfs -v /ho
阅读全文
摘要:内存前十:ps aux | head -1; ps aux | sort -k4nr | head -10 ip连接数统计: netstat -tun | awk '{print $5}' | cut -d: -f1 |sort | uniq -c | sort -n 端口占用:lsof -i:80
阅读全文
摘要:systemctl enable nginx #设置自启动 systemctl disable nginx #停止自启动ls /usr/lib/systemd/system #查看自启动列表
阅读全文
摘要:centos7 yum install epel-release yum update yum install -y nginx #安装stream模块,如果需要 yum install nginx-mod-stream -y# systemctl start nginx.service 启动ngi
阅读全文
摘要:systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl start firewalld #启动 firewall firewall-cmd -
阅读全文
摘要:seata docker部署:https://www.cnblogs.com/binz/p/12841125.html nacos docker部署:https://www.cnblogs.com/binz/p/12295346.html 此配置基于seata.1.2集成,安装也请安装1.2版本se
阅读全文
摘要:服务端及源码下载地址:https://seata.apache.org/zh-cn 项目地址: https://github.com/seata/seata 项目官网: https://seata.io/zh-cn/docs/overview/what-is-seata.html 重要bug提示:s
阅读全文