Importing existing backup in new app instance fails
-
@nebulon I tried 2 other attempts from start and none worked out. Last scenario I did login the new app before importing backup and then the GUI was "normal", right after import it was wrong again.
I'm lost....
The only thing I can think of is that I have the following modules active and maybe because of "phone home" to check licenses (they are only for 1 domain) it breaks the app? (Actually I doubt it, because the very first time I changed the subdomain to the current and that also didn't work).
Custom Folders
Followers
LDAP Integration
Spam Filter
Tags -
I probably would have to debug this on your system then, don't seem to be able to reproduce the issue here. If you use the webterminal into the app, can you see
/app/code/storage
being a symlink to/app/data/storage
?I will move those topics to a new thread since this is more like a general restore issue it seems.
-
@nebulon very good you moved this to a new thread.
On another Cloudron I just migrated (only migrate with no single module) a Freescout instance (this one is rather new, only 4 weeks and only few emails) and that went perfect.
The Cloudron/Freescout app that has the issues is already from the very first version and updates went fine.
The app is 1.98GB in size according to Cloudron System Info, however, when I calculate size on SCP login, the /appsdata/[ID]/data/ folder is 2.11GB and the mysqldump is 189.8MB.If you use the webterminal into the app, can you see /app/code/storage being a symlink to /app/data/storage ?
In the current app it is symlink (bright blue is symlink I guess) together with Modules.
I don't keep up the migrated Freescout up for longer than a few minutes because that one is fully functional and fetches email and response with autoanswers. Is there an easy way to stop cron to prevent mixing of data between 2 of the same instances?
-
@imc67 right you would have to stop the app to avoid interfering with the mailboxes.
just out of curiosity, did you restart the failing app after import? I don't quite get why
storage/framework/cache/
would not be writeable, if the symlinks are there.You can also try to run
sudo chown -R www-data:www-data /app/data
since that would set the permissions for the files in the symlinked files. Although that would be done on an app restart anyways. -
@nebulon hope you have time somewhere coming days to debug this issue together?
Summary:
- Tried to follow you steps 5 times to migrate a Freescout instance (1.98GB + 189.8MB mysqldump, since the first version on Cloudron)
- Only the 1st time not only failed the "CSS/scripts" but also somehow the symlink.
- All the other 4 times only failed with a GUI without (looks like) CSS and some buttons (scripts?) are not working (login is possible with LDAP) see screenshot
- A migration of Freescout on another Cloudron went fine (only 4 weeks old instance with hardly any mails).
- Just as a debug scenario I just cloned the current app and that also didn't work, same result with GUI/CSS/script.
-
@moocloud_matt thanks for the access! I was able to figure out this mystery...
@nebulon We don't store symlinks in backups and it seems that there is a bunch of them in
/app/data/public-modules
. Not sure who creates them but a restore doesn't create those symlinks back. You couldn't reproduce it because you I am guessing you used tgz backup which keeps symlinks inside it but rsync backup will not store symlinks (there is no way to store symlinks in object storage without hacks). So, the package has to be fixed create those symlinks on startup as needed. -
@girish said in Importing existing backup in new app instance fails:
I have fixed the code in 6.2 to preserve symlinks in rsync backups/restore
I can confirm that with 6.2.2 the backup and restore of FreeScout does work!
-