简体   繁体   中英

MantisBT Bugtracker

我已经在系统上安装了MantisBT,并创建/报告了问题,现在我在其他系统上安装了相同版本的mantisBT。如何将数据库从我的系统迁移到其他系统。接下来的问题是如何管理两个系统之间的连接(应该在每个系统上显示更新)?

Regarding the first question

How to migrate database from my system to other system

as the version of MantisBT in both systems is the same, follow these steps:

  1. Dump the "old" Database mysqldump -uUSER -p old_database > dumpfile
  2. Load the dump on the new system mysql -uUSER -p new_db < dumpfile
  3. You may also copy the configuration file from the old to the new system.
  4. Do not forget the attachments. Just copy them.

In case you have access to PHPMyAdmin this process is much easier.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM