From 6e71b75f47134a766b0f5c929bc51d37c697af5a Mon Sep 17 00:00:00 2001 From: Andy Date: Sat, 28 Nov 2020 13:43:58 +0700 Subject: [PATCH] modified: doc/Home.md modified: doc/Migrate.md --- doc/Home.md | 1 + doc/Migrate.md | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Home.md b/doc/Home.md index 9ed552bd3a..4d03ed2e5a 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -35,6 +35,7 @@ Friendica Documentation and Resources * [Using SSL with Friendica](help/SSL) * [Config values that can only be set in config/local.config.php](help/Config) * [Improve Performance](help/Improve-Performance) +* [Migrate to new server](help/Migrate) * [Administration Tools](help/tools) **Developer Manual** diff --git a/doc/Migrate.md b/doc/Migrate.md index 800bf1df8c..892e4d375e 100644 --- a/doc/Migrate.md +++ b/doc/Migrate.md @@ -55,16 +55,15 @@ Take your web server offline. This will ensure consistency of your users' data. ## Dumping DB Dump you database: ``mysqldump -p friendica_db > friendica_db-$(date +%Y%m%d).sql`` - and possibly compress it. ## Transferring to new installation Transfer your database and copy of your configuration file ``config/local.config.php-copy`` to your new server. -## Import your DB +## Restore your DB -Import your database: ``mysql -p friendica_db < your-friendica_db-file.sql`` +Import your database on your new server: ``mysql -p friendica_db < your-friendica_db-file.sql`` ## Completing installation process