Owncloud disk crashed, data is safe, how to set up a new server
Our Owncloud server's disk crashed, beyond repair. All the data is stored on mounted disks (RAID-1), and these seem intact. I have to confess that we don't have a backup of the configuration, as far as I can tell.
Is there a way to safely re-create an Owncloud server using existing data disks on Linux?
Update: screenshot
linux owncloud
add a comment |
Our Owncloud server's disk crashed, beyond repair. All the data is stored on mounted disks (RAID-1), and these seem intact. I have to confess that we don't have a backup of the configuration, as far as I can tell.
Is there a way to safely re-create an Owncloud server using existing data disks on Linux?
Update: screenshot
linux owncloud
3
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29
add a comment |
Our Owncloud server's disk crashed, beyond repair. All the data is stored on mounted disks (RAID-1), and these seem intact. I have to confess that we don't have a backup of the configuration, as far as I can tell.
Is there a way to safely re-create an Owncloud server using existing data disks on Linux?
Update: screenshot
linux owncloud
Our Owncloud server's disk crashed, beyond repair. All the data is stored on mounted disks (RAID-1), and these seem intact. I have to confess that we don't have a backup of the configuration, as far as I can tell.
Is there a way to safely re-create an Owncloud server using existing data disks on Linux?
Update: screenshot
linux owncloud
linux owncloud
edited Jan 26 at 22:21
D.Bugger
asked Jan 26 at 21:07
D.BuggerD.Bugger
1235
1235
3
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29
add a comment |
3
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29
3
3
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29
add a comment |
3 Answers
3
active
oldest
votes
Please note: These steps are only partially tested.
If you had enabled file encryption, I have bad news for you: As the config.php
the secret key, the files cannot be restored.
If not, I would suggest following steps:
Backup what you currently have.
Download and extract a fresh copy of OwnCloud
Recreate the config as good as you can:
- Set the database type and path (as you have database file I would guess the database type is sqlite)
- Set
dbtableprefix
to your prefix (default isoc_
). In doubt, look into your database. - Set
datadirectory
to your data directory - Set
installed
to true.
- Restore the data directory. It must have the same path as the old one, or OwnCloud won't find the files.
As you have lost the password salt, you have to set new passwords for all users.
Use the occ
command to reset the passwords:
$ sudo -u www-data php /var/www/owncloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
After you login, you should have file access again. If you cannot download the files and get 404 errors, the data directory is probably not at the same location as it was previously.
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
add a comment |
This depends what is on that disks that are not dead. If this includes all data directories and, most importantly, the Mysql/Postgresql database, you should have not lost anything except the time to setup a new instance and get stuff working again.
If this doesn't include the database, you are in a bad situation, as you have lost all management information and things like application data (e.g. addressbooks and calender entries). You are still not totally screwed, as at least the actual data files should be present if Owncloud indeed stored that on the still alive disks. There will be directories for every user and group containing the last state of every file, and you can use those to reimport everything into a new instance.
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
add a comment |
In the future you should regularly create a database dump and copy it to a backup server together with the content of the data directly and the config.php file. And consider moving to Nextcloud because it is more secure, faster, fully open source and has more features. Migration from owncloud to nextcloud is fully supported and easy.
Good look with your issue
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "2"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f950935%2fowncloud-disk-crashed-data-is-safe-how-to-set-up-a-new-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Please note: These steps are only partially tested.
If you had enabled file encryption, I have bad news for you: As the config.php
the secret key, the files cannot be restored.
If not, I would suggest following steps:
Backup what you currently have.
Download and extract a fresh copy of OwnCloud
Recreate the config as good as you can:
- Set the database type and path (as you have database file I would guess the database type is sqlite)
- Set
dbtableprefix
to your prefix (default isoc_
). In doubt, look into your database. - Set
datadirectory
to your data directory - Set
installed
to true.
- Restore the data directory. It must have the same path as the old one, or OwnCloud won't find the files.
As you have lost the password salt, you have to set new passwords for all users.
Use the occ
command to reset the passwords:
$ sudo -u www-data php /var/www/owncloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
After you login, you should have file access again. If you cannot download the files and get 404 errors, the data directory is probably not at the same location as it was previously.
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
add a comment |
Please note: These steps are only partially tested.
If you had enabled file encryption, I have bad news for you: As the config.php
the secret key, the files cannot be restored.
If not, I would suggest following steps:
Backup what you currently have.
Download and extract a fresh copy of OwnCloud
Recreate the config as good as you can:
- Set the database type and path (as you have database file I would guess the database type is sqlite)
- Set
dbtableprefix
to your prefix (default isoc_
). In doubt, look into your database. - Set
datadirectory
to your data directory - Set
installed
to true.
- Restore the data directory. It must have the same path as the old one, or OwnCloud won't find the files.
As you have lost the password salt, you have to set new passwords for all users.
Use the occ
command to reset the passwords:
$ sudo -u www-data php /var/www/owncloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
After you login, you should have file access again. If you cannot download the files and get 404 errors, the data directory is probably not at the same location as it was previously.
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
add a comment |
Please note: These steps are only partially tested.
If you had enabled file encryption, I have bad news for you: As the config.php
the secret key, the files cannot be restored.
If not, I would suggest following steps:
Backup what you currently have.
Download and extract a fresh copy of OwnCloud
Recreate the config as good as you can:
- Set the database type and path (as you have database file I would guess the database type is sqlite)
- Set
dbtableprefix
to your prefix (default isoc_
). In doubt, look into your database. - Set
datadirectory
to your data directory - Set
installed
to true.
- Restore the data directory. It must have the same path as the old one, or OwnCloud won't find the files.
As you have lost the password salt, you have to set new passwords for all users.
Use the occ
command to reset the passwords:
$ sudo -u www-data php /var/www/owncloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
After you login, you should have file access again. If you cannot download the files and get 404 errors, the data directory is probably not at the same location as it was previously.
Please note: These steps are only partially tested.
If you had enabled file encryption, I have bad news for you: As the config.php
the secret key, the files cannot be restored.
If not, I would suggest following steps:
Backup what you currently have.
Download and extract a fresh copy of OwnCloud
Recreate the config as good as you can:
- Set the database type and path (as you have database file I would guess the database type is sqlite)
- Set
dbtableprefix
to your prefix (default isoc_
). In doubt, look into your database. - Set
datadirectory
to your data directory - Set
installed
to true.
- Restore the data directory. It must have the same path as the old one, or OwnCloud won't find the files.
As you have lost the password salt, you have to set new passwords for all users.
Use the occ
command to reset the passwords:
$ sudo -u www-data php /var/www/owncloud/occ user:resetpassword admin
Enter a new password:
Confirm the new password:
Successfully reset password for admin
After you login, you should have file access again. If you cannot download the files and get 404 errors, the data directory is probably not at the same location as it was previously.
answered Jan 27 at 1:52
S. BiewaldS. Biewald
261
261
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
add a comment |
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
Just checked, files aren't encrypted. Nice!
– D.Bugger
Jan 27 at 10:32
1
1
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
Reanimated! All that's left is the SSL certificate that has to be reinstalled. Thanks a lot!
– D.Bugger
Jan 28 at 15:24
add a comment |
This depends what is on that disks that are not dead. If this includes all data directories and, most importantly, the Mysql/Postgresql database, you should have not lost anything except the time to setup a new instance and get stuff working again.
If this doesn't include the database, you are in a bad situation, as you have lost all management information and things like application data (e.g. addressbooks and calender entries). You are still not totally screwed, as at least the actual data files should be present if Owncloud indeed stored that on the still alive disks. There will be directories for every user and group containing the last state of every file, and you can use those to reimport everything into a new instance.
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
add a comment |
This depends what is on that disks that are not dead. If this includes all data directories and, most importantly, the Mysql/Postgresql database, you should have not lost anything except the time to setup a new instance and get stuff working again.
If this doesn't include the database, you are in a bad situation, as you have lost all management information and things like application data (e.g. addressbooks and calender entries). You are still not totally screwed, as at least the actual data files should be present if Owncloud indeed stored that on the still alive disks. There will be directories for every user and group containing the last state of every file, and you can use those to reimport everything into a new instance.
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
add a comment |
This depends what is on that disks that are not dead. If this includes all data directories and, most importantly, the Mysql/Postgresql database, you should have not lost anything except the time to setup a new instance and get stuff working again.
If this doesn't include the database, you are in a bad situation, as you have lost all management information and things like application data (e.g. addressbooks and calender entries). You are still not totally screwed, as at least the actual data files should be present if Owncloud indeed stored that on the still alive disks. There will be directories for every user and group containing the last state of every file, and you can use those to reimport everything into a new instance.
This depends what is on that disks that are not dead. If this includes all data directories and, most importantly, the Mysql/Postgresql database, you should have not lost anything except the time to setup a new instance and get stuff working again.
If this doesn't include the database, you are in a bad situation, as you have lost all management information and things like application data (e.g. addressbooks and calender entries). You are still not totally screwed, as at least the actual data files should be present if Owncloud indeed stored that on the still alive disks. There will be directories for every user and group containing the last state of every file, and you can use those to reimport everything into a new instance.
answered Jan 26 at 21:42
Sven♦Sven
86.3k10144198
86.3k10144198
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
add a comment |
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
Yes, all data directories and the database are there. I updated the question with a screenshot. Is there a description somewhere how to set up the new instance and connect it to the data?
– D.Bugger
Jan 26 at 22:19
add a comment |
In the future you should regularly create a database dump and copy it to a backup server together with the content of the data directly and the config.php file. And consider moving to Nextcloud because it is more secure, faster, fully open source and has more features. Migration from owncloud to nextcloud is fully supported and easy.
Good look with your issue
add a comment |
In the future you should regularly create a database dump and copy it to a backup server together with the content of the data directly and the config.php file. And consider moving to Nextcloud because it is more secure, faster, fully open source and has more features. Migration from owncloud to nextcloud is fully supported and easy.
Good look with your issue
add a comment |
In the future you should regularly create a database dump and copy it to a backup server together with the content of the data directly and the config.php file. And consider moving to Nextcloud because it is more secure, faster, fully open source and has more features. Migration from owncloud to nextcloud is fully supported and easy.
Good look with your issue
In the future you should regularly create a database dump and copy it to a backup server together with the content of the data directly and the config.php file. And consider moving to Nextcloud because it is more secure, faster, fully open source and has more features. Migration from owncloud to nextcloud is fully supported and easy.
Good look with your issue
answered Jan 27 at 12:44
DarwicheDarwiche
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Server Fault!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f950935%2fowncloud-disk-crashed-data-is-safe-how-to-set-up-a-new-server%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
3
I would highly recommend backing up the remaining disks before doing anything else.
– tonysdg
Jan 27 at 3:29