modified: doc/Home.md

modified:   doc/Migrate.md
This commit is contained in:
Andy H 2020-11-28 13:43:58 +07:00
parent 57bc1143f7
commit 6e71b75f47
2 changed files with 3 additions and 3 deletions

View File

@ -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**

View File

@ -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