摘要:
django数据库读写分离 1. 配置数据库 settings.py文件中 用SQLite: DATABASES = { 'default': { 'ENGINE': 'django.db.backends.sqlite3', 'NAME': os.path.join(BASE_DIR, 'db.s 阅读全文
摘要:
目标:搭建两台MySQL服务器,一台作为主服务器,一台作为从服务器,实现主从复制 环境: #主数据库: 192.168.137.130 #从数据库: 192.168.137.131 mysql安装可参考:https://blog.csdn.net/qq_43154385/article/detail 阅读全文