-
I use a rather old version of this wonderful magazine, but attempts to upgrade constantly run into git errors, to be honest, I’m not good at it and it’s easier for me to transfer the entire magazine with all the settings to another VPS |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hello @MikleBas Can you tell me which Server OS do you use? Ubuntu? Debian? So then I can write you a detailed Step by Step how you can transfer your Cloudlog Installation. This will probably also help others :) |
Beta Was this translation helpful? Give feedback.
-
Hi @MikleBas I post this tutorial here you can follow IF you don't have any special configurations AND you know what you are doing on a Linux system. If you aren't experienced with working on the commandline you should E-Mail me (Mail is on QRZ.com) and I can help you directly. If you follow this Step by Step Guide I won't be responsible for data loss. You have to edit some comments by yourself. This is not Copy Paste! This is just a guide. if you install Ubuntu or Debian doesn't matter. I personally like Debian because it's a bit thinner and from my point of view a bit more stable. I would suggest Debian 12 "Bookworm" The following Step's do not guarantee everything working ok. In this steps all commands are performed as First make sure you act as
Step 1 - Backup'sYou first should create a proper backup of the data and the SQL database:
Then you also should make a backup of your database:
To make it easier to copy all files we create a compressed tar file
The file Step 2 - New MachineIn the next Step install the latest Debian (or Ubuntu) on the new Machine and install Cloudlog as described in the Wiki. Only perform the Step's 1 to 4!!! Don't forget the Cronjobs! Make sure you use the same Database Name, Database User and Database Password as in your old installation. Otherwise you have to adjust the credentials in the new installation manually. You can find the set credentials in the file Only perform the Step's 1 to 4. You don't need to run the installation wizard in this case. Step 3 - Modify the InstallationNow we modify the new installation. For this we decompress the We now need to decompress this file
If this is done we can start to replace some files. I use the installation path
With this commands we sync uploads, qslcards and data files. After we copied all those files we want to make sure the permissions in the installation folder are set correctly
Step 4 - SQL DatabaseDuring Step 2 of this Tutorial you created a MySQL Database while following the installation wiki. We will now restore the SQL Backup we did on the old machine and populate this data into the new database. First we have to create the tables (basic redump)
Then we hop into mysql to populate all the necessary data
Perform this commands in the mysql commandline
Step 5 - FeedbackRestart the webserver. I used apache2.
Congrats! You should successfully transfered your Cloudlog-instance to a new server. Please test EVERYTHING and report how you were able to follow this small tutorial. Vy 73 de HB9HIL |
Beta Was this translation helpful? Give feedback.
Hi @MikleBas
I post this tutorial here you can follow IF you don't have any special configurations AND you know what you are doing on a Linux system. If you aren't experienced with working on the commandline you should E-Mail me (Mail is on QRZ.com) and I can help you directly. If you follow this Step by Step Guide I won't be responsible for data loss. You have to edit some comments by yourself. This is not Copy Paste! This is just a guide.
if you install Ubuntu or Debian doesn't matter. I personally like Debian because it's a bit thinner and from my point of view a bit more stable. I would suggest Debian 12 "Bookworm"
The following Step's do not guarantee everything working ok. In this s…