1 Star 0 Fork 0

坐看云起/racing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mysql_migration.yml 984 Bytes
一键复制 编辑 原始数据 按行查看 历史
坐看云起 提交于 2024-09-27 01:49 . update README.md.
---
- name: MySQL Database Migration
hosts: all
become: yes
vars:
mysql_user: 'root'
mysql_password: 'your_password'
mysql_host: 'localhost'
mysql_port: '3306'
mysql_database: 'your_database'
tasks:
- name: Create database if not exists
mysql_db:
name: "{{ mysql_database }}"
state: present
- name: Dump MySQL database
command: mysqldump -u {{ mysql_user }} -p{{ mysql_password }} -h {{ mysql_host }} -P {{ mysql_port }} {{ mysql_database }} > /tmp/{{ mysql_database }}.sql
- name: Copy dump file to target server
copy:
src: /tmp/{{ mysql_database }}.sql
dest: /tmp/{{ mysql_database }}.sql
owner: root
group: root
mode: '0644'
- name: Import MySQL database on target server
command: mysql -u {{ mysql_user }} -p{{ mysql_password }} -h {{ mysql_host }} -P {{ mysql_port }} {{ mysql_database }} < /tmp/{{ mysql_database }}.sql
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/sitseecloud/racing.git
git@gitee.com:sitseecloud/racing.git
sitseecloud
racing
racing
master

搜索帮助