Backup & Restore OTRS in Windows machine.

Moderator: crythias

Locked
Harikumar
Znuny newbie
Posts: 43
Joined: 17 Aug 2011, 08:00
Znuny Version: 3.0.9
Real Name: harikumar
Company: ii2

Backup & Restore OTRS in Windows machine.

Post by Harikumar »

Hi Team,

Please help me by providing detailed steps for backing up OTRS files and mysql db in windows system.
In the Usermanual,backup process in Linux is only explained.Kindly explain the process and steps required for doing back up and restoring in Windows machine also.

Thanks in advance.
Harikumar.M
crythias
Moderator
Posts: 10170
Joined: 04 May 2010, 18:38
Znuny Version: 5.0.x
Location: SouthWest Florida, USA
Contact:

Re: Backup & Restore OTRS in Windows machine.

Post by crythias »

Overview:
Backup: filesystem + mysqldump.
Restore: Install same version, restore filesystem, restore database.

Don't take my word for it. Your system restore and backup methods are up to you and completely under your control. You should test this on another machine for the way it should work in your environment.
OTRS 6.0.x (private/testing/public) on Linux with MySQL database.
Please edit your signature to include your OTRS version, Operating System, and database type.
Click Subscribe Topic below to get notifications. Consider amending your topic title to include [SOLVED] if it is so.
Need help? Before you ask
Huwiseg
Znuny newbie
Posts: 61
Joined: 19 Jun 2013, 11:12
Znuny Version: 3.2.4

Re: Backup & Restore OTRS in Windows machine.

Post by Huwiseg »

Instead using extra Software, its easier, if you can handle it, using the tools of OTRS and MySQL.

Start a command line and enter your otrs mysql bin dir, like
cd "c:\"Program Files (x86)\OTRS\mysql\bin"

Dump Database:
mysqldump.exe -u otrs -p databasename > path\to\your\new\dump.sql

Restore Database:
mysql -u otrs -p --database=databasename < path\to\your\dump.sql
Locked