会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Binz
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
9
10
···
13
下一页
2020年9月3日
seata 1.3.0 seata Global lock wait timeout
摘要: seata 服务降成1.2即可解决
阅读全文
posted @ 2020-09-03 15:17 Binz
阅读(3317)
评论(0)
推荐(0)
2020年8月17日
mysql5.7 DLETE IN You can't specify target table 'table' for update in FROM clause,
摘要: mysql5.7以前的操作是,可以正常删除数据 DELETE FROM table1 WHERE id IN ( SELECT * FROM ( SELECT id FROM table1 WHERE id < 30 ) a ) mysql5.7的操作需要微调一下,因为mysql5.7的sql优化后
阅读全文
posted @ 2020-08-17 15:49 Binz
阅读(111)
评论(0)
推荐(0)
2020年5月28日
java 动态修改阿里云域名解析,用于解决家用宽带公网ip经常变动问题
摘要: 需要有java、maven、springboot、阿里云域名使用经验、以及拥有一个域名 pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi=
阅读全文
posted @ 2020-05-28 18:14 Binz
阅读(1188)
评论(0)
推荐(0)
2020年5月27日
docker 搭建 gitea/gitea
摘要: 拉取镜像 https://gitea.io/zh-cn/ docker pull gitea/gitea 如果遇到拉取镜像超时,请更换源 https://www.cnblogs.com/binz/p/11790948.html 文章底部有更换源说明 创建目录 mkdir -p /home/docke
阅读全文
posted @ 2020-05-27 11:27 Binz
阅读(2693)
评论(0)
推荐(0)
2020年5月18日
docker 搭建 gofastdfs
摘要: 1、拉取镜像 docker pull sjqzhang/go-fastdfs 2、创建挂载目录 mkdir -p /home/dockerdata/gofastdfs/data 3、运行容器 docker run -d --restart=always --name gofastdfs -v /ho
阅读全文
posted @ 2020-05-18 18:20 Binz
阅读(1330)
评论(0)
推荐(0)
2020年5月15日
查看内存占用排前的应用
摘要: 内存前十: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
阅读全文
posted @ 2020-05-15 14:32 Binz
阅读(359)
评论(0)
推荐(0)
2020年5月14日
centos 设置软件自启动(例如:nginx)
摘要: systemctl enable nginx #设置自启动 systemctl disable nginx #停止自启动ls /usr/lib/systemd/system #查看自启动列表
阅读全文
posted @ 2020-05-14 14:14 Binz
阅读(261)
评论(0)
推荐(0)
centos7安装nginx centos6安装nginx
摘要: centos7 yum install epel-release yum update yum install -y nginx #安装stream模块,如果需要 yum install nginx-mod-stream -y# systemctl start nginx.service 启动ngi
阅读全文
posted @ 2020-05-14 14:07 Binz
阅读(154)
评论(0)
推荐(0)
centos 关闭防火墙
摘要: systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl start firewalld #启动 firewall firewall-cmd -
阅读全文
posted @ 2020-05-14 11:49 Binz
阅读(267)
评论(0)
推荐(0)
2020年5月9日
springcloud + nacos + mybatis ,增加seata分布式事务
摘要: 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
阅读全文
posted @ 2020-05-09 16:48 Binz
阅读(1588)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
9
10
···
13
下一页
公告