資料庫遷移

2021-09-29 09:52:00 字數 800 閱讀 7804

資料庫遷移:

1.安裝一台環境一模一樣的機器

1.1安裝mysql5.5.49

2.原機器資料庫匯出資料到/tmp/all.sql.gz

scp到新機器

3.新機器匯入資料

3.1建立使用者,授權。

4.修改wp-config.php配置檔案

define('db_host','***.xx.xx.x')

hostname: db01

eth0:192.168.10.10/24

eth1:172.16.10.x/24

mysqldump -uroot -plihao123 wordpress -b |gzip>bak.sql.gz

scp bak.sql.gz [email protected]:/tmp

[root@db01 tmp]# gzip -d bak.sql.gz

[root@db01 tmp]# mysql -uroot -plihao123 mysql> grant all on wordpress.* to wordpress@'172.16.10.%' identified by '123456';

query ok, 0 rows affected (0.01 sec)

[root@web01 tools]# /etc/init.d/mysqld stop

shutting down mysql.. success!

[root@web01 tools]# lsof -i :3306

[root@web01 tools]# chkconfig mysqld off

資料庫遷移

這期專案,需要將另外乙個系統a與現有系統b整合,由於時間比較緊,直接採用遷移oracle資料庫物件的方式,發現之前評估的方案不是特別完善,首先 1 a資料庫為gbk編碼,b資料庫是utf 8編碼格式,a資料遷移需要進行中文字段擴容 至少1.5倍 2 a資料庫需要做效能評估,歷史資料遷移涉的方式,兼顧...

資料庫遷移

資料庫遷移 在開發過程中,需要修改資料庫模型,而且還要在修改之後更新資料庫。最直接的方式就是刪除舊表,但這樣會丟失資料。更好的解決辦法是使用資料庫遷移框架,它可以追蹤資料庫模式的變化,然後把變動應用到資料庫中。在flask中可以使用flask migrate擴充套件,來實現資料遷移。並且整合到fla...

資料庫遷移

1,增加遷移 如果你已經建好了表,你想在這個表中新增屬性,但是有不能回滾,這就需要單獨遷移了。1 rails generate migration addpartnumbertoproducts 這個命令生成乙個空的遷移,但名字已經起好了 class addpartnumbertoproducts ...