Moving Sugar to Another Server - SugarCRM Support Site - 0 views
-
-
cezarovidiu on 20 Mar 13japtone Senior Member Join Date Nov 2010 Posts 49 Re: Transferring SugarCRM to a new server If you're using Linux try to have the same version of PHP, Apache, and DB (MySQL for instance) in order to avoid compatibility issues. In your production server tar up the sugarcrm root directory, transfer it to the new server and untar wherever your new root directory will be. Next take a db dump of your database, transfer it to the new server and do a restore. Make sure apache is configured on the new server to point to the root of sugarcrm and start it up. Make sure to modify config.php to account for any change in paths and hostname. that's what I've found to be the easiest way to 'clone' sugar.
-
-
mysqldump -h localhost -u [MySQL user, e.g. root] -p[database password] -c --add-drop-table --add-locks --all --quick --lock-tables [name of the database] > sqldump.sql
-
Extract the Database
- ...5 more annotations...