vault backup: 2025-12-04 09:12:56

This commit is contained in:
杜鹏飞
2025-12-04 09:12:56 +08:00
commit 71e83861de
300 changed files with 339584 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
### ssh 代理 通道 设置
![[企业微信截图_16716838564669.png]]
![[企业微信截图_16716839231210.png]]
* nacos增加本地配置覆盖nacos数据库连接本地通过dbeaver开通一个本地隧道然后连过去
![[企业微信截图_16716839586375.png]]
```yml
spring:
cloud:
config:
override-none: true
allow-override: true
override-system-properties: false
```
## Mysql 导入 utf incorrect
>https://www.cnblogs.com/Code-Rain/p/16401190.html
```
--default-character-set=utf8mb4
```
## ssh 穿透 大力 proxifier
![[Proxifier v3.42中文版.exe]]

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -0,0 +1,3 @@
# 数据库 设计 文档 生成
>https://gitee.com/dotnetchina/SmartSQL

View File

@@ -0,0 +1,71 @@
## 数据库迁移工具
database migrations tool
database merge
[数据库/SQL 版本管理工具选型指北Flyway、Liquibase、Bytebase、阿里 DMS - 知乎](https://zhuanlan.zhihu.com/p/559857853)
### Java
liquibase
https://github.com/liquibase/liquibase
flyway
https://github.com/flyway/flyway/
mybatis migrations
好像只有命令行工具
https://mybatis.org/migrations/installation.html
### golang
bytebase
CNCF
有页面平台
https://github.com/bytebase/bytebase
https://www.bytebase.com/zh/pricing
dbmate
https://github.com/amacneil/dbmate
页面有说明与其它几个的对比
golang-migrate
https://github.com/golang-migrate/migrate
goose
https://github.com/pressly/goose
sql-migrate
https://github.com/rubenv/sql-migrate
gormigrate
https://github.com/go-gormigrate/gormigrate
### python
sqlalchemy-alembic
https://github.com/sqlalchemy/alembic
aerich
https://github.com/tortoise/aerich
django migrations
[Migrations | Django documentation | Django](https://docs.djangoproject.com/en/4.1/topics/migrations/)
### others
[sqitchers/sqitch: Sensible database change management](https://github.com/sqitchers/sqitch)
https://github.com/mbucc/shmig
## links
- [多人开发,数据库结构怎么同步? - V2EX](https://www.v2ex.com/t/635692?p=1)
- [数据库的迁移/版本控制 工具 - V2EX](https://www.v2ex.com/t/903085)
- [请教: Go 项目,大家偏向如何管理数据库迁移? - V2EX](https://www.v2ex.com/t/751998)
- [Flyway与Liquibase对比\_九天星辰的博客-CSDN博客\_flyway和liquibase](https://blog.csdn.net/cenxuu/article/details/86685662)
- [关于应用程序的 Deployment 与 Database Changes, 诸位在实际中是如何处理的? - V2EX](https://www.v2ex.com/t/640092)
-