Self host your cluster, no vendor lock-in.
No docker? k3s uses containerd. It has vast search results to get you running.
Self host your cluster, no vendor lock-in.
No docker? k3s uses containerd. It has vast search results to get you running.
Any idea about best way to move an ERPNEXT v13 stack from one production Docker Swarm to another server in another swarm?
I used your latest documentation for Docker Swarm till the CRON step.
Now I have 3 production sites that I want to move them to a new VPS (higher specs) and don’t want to loose the data.
I have very limited HDD space on the old server so taking local backup of the DB is almost impossible.
Thanks,
Attach and mount a volume to backup data. You can then unmount and attach the same volume on new server to restore.
Shall I do this after performing the final step in custom_containers/docker-swarm.md at main · castlecraft/custom_containers · GitHub i.e. I create the erpnext stack, configure-erpnext, create-site , and erpnext-backup ?
Is it fine to drop the “mariadb-slave” database to free space ? this will free almost half the hard disk.
I can’t create a volume on the old server (no free space to store the MariaDB database) , is it possible to run scp and pull the data from the volumes below to overwrite its corresponding volumes on the new server?
/var/lib/docker/volumes/mariadb_db-data/_data
/var/lib/docker/volumes/frappe-bench-v13_redis-cache-vol/_data
/var/lib/docker/volumes/frappe-bench-v13_redis-queue-vol/_data
/var/lib/docker/volumes/frappe-bench-v13_redis-socketio-vol/_data
/var/lib/docker/volumes/frappe-bench-v13_sites-vol/_data
/var/lib/docker/volumes/frappe-bench-v13_assets-vol/_data
/var/lib/docker/volumes/frappe-bench-v13_logs-vol/_data
I also noticed in your gist that you used only one environment variable “VERSION” while we used to have two variables; “ERPNEXT_VERSION” and “FRAPPE_VERSION”
Hello tareks,
When did you last try to set it up using these instructions.
Because I’ve been trying for a week now, and I get an error after running the new-site command. The same error as in this issue
Any ideas?
Hello,
thank’s,
I’m search a instruction such as this Fast steps to install Frappe/ERPNext v13/v14 on Clean Ubuntu 22.04 Production/Develop
Tested and working in Jan 2023.
Very good quality, @PyJumper ++ .
Greezs
mariadb slave can be removed if it’s not used.
you can try whatever works for you
there was a refactor to images, now we use only 1 ERPNext image, so only one VERSION.
I got the same error when going step by step (without changing anything) into custom_containers/docker-swarm.md at main · castlecraft/custom_containers · GitHub by @revant_one
Here is the error:
2023-01-29 13:38:49 24 [Warning] Access denied for user ‘root’@‘localhost’ (using password: YES)
I have tried all the possible solutions as in : Database Error on Creating First Site during Docker Compose Installation · Issue #1056 · frappe/frappe_docker · GitHub
Any ideas?
I can’t figure it out. I’m still facing the same issue, but I followed the single server instructions and not the swarm one.
I tried it with 14.13 and 14.14.
Edit: Does your password contain any special week l character. Check this reply from @revant_one on GitHub:
It Works!
I rebuilt the server from scratch, followed step by step the instructions as per custom_containers/docker-swarm.md at main · castlecraft/custom_containers · GitHub by @revant_one
The only change I’ve made is to disable the Access control (made the stack “public”) for the stacks:
mariadb, erpnext, configure-erpnext and the add-site-example-com stacks.
Also, it is important to comment the --install-app=payments in the create-site.yml before deploying the stack (if you are not installing Version 14).
I used:
BENCH_NAME = ERPNext
VERSION = v13.43.1 which caused in the installed apps (Help/About):
ERPNext: v13.43.1 (HEAD)
Frappe Framework: v13.47.0 (HEAD)
OS: ubuntu 22.04 (64)
Docker Compose version v2.15.1
Portainer CE version 2.16.2
traefik version 2.9.6
I was able to solve it as well.
I had to delete the following directory on my server:
~/data/mariadb:/var/lib/mysql
which is used by the mariadb compose file used in the single server instructions.
For more info check the issue I closed on GitHub
I migrated three sites by making S3 Backup then downloading the database, private files, public files and site-config to the sites folder then run the bench restore command.
I’ve also copied the encryption key from the old site-config file(s) to the new site(s).
I have now these problems/inquiries:
1- Lets Encrypt certificate of the three sites are all “not verified by 3rd party” in this setup it should be “Let’s Encrypt” , they were not added to Traefik acme.json . Any idea on how to regenerate the certificates? Are there any files that has to be copied but were not included in the S3 backup files ?
acme.json has only certificates for Traefik and Portainer.
2- Why there is no “assets” volume in the erpnext stack ? I see they are created under random names.
3- All PDFs (like quotations, POs, etc…) print in one “left” column despite checking the “Print Style” to 2 columns. Also the logo is not showing.
4- in @revant_one script we used only one “VERSION” environment variable due to the refactor.
I also noticed that this variable “VERSION” is used in “erpnext” stack, “site-config” stack, and create-site stack. What is I want to upgrade the ERPNEXT Version say from v13.41.1 to v13.44.0; shall I change the version in the three stacks and redeploy ? or it is enough to re-deploy the “erpnext” stack?
If we’ll do so, then after re-deploy, the old images will always reside on the system as they are still connected to the “run once” containers like “site-config” and “create-site”.
Thanks,
I’ve made a reset to the server (OS reinstalled) and followed @revant_one script on:
2- Comment of asset is noted.
3- I still have a problem that all PDFs non-table sections are printed in one column to the right. I’m digging to find a solution for this.
4- In case I want to upgrade the “erpnext” stack, I will just edit the stack, change the “VERSION” then redeploy the stack ?
Hi Revant
Regarding No. 3 , I’m facing the same problem as described in CSS not working on Generate PDF although I’m using VERSION 13.41.1 (the problem appeared in v11)
Any idea why this errors occurred ? Is the a custom image?
Printing through the PC “save to PDF” option is looking fine, only the “PDF” button is missing the css.
Thanks,
Solved using:
On the Backend Container:
bench --site mysite.domain.com set-config hostname “https://mysite.domain.com:443”
as per Pdf's not looking nice as html documents (assume CSS missing) - #4 by vrms
The question is why I had to add this if it is supposed to be fixed after v11?
I have now 3 sites (e.g. site1.domain.com , site2.domain.com, site3.otherdomain.com) fully running in production environment on Docker Swarm node with Traefik and Portainer installed as per @revant_one manifest ( custom_containers/docker-swarm.md at main · castlecraft/custom_containers · GitHub ) .
VERSION = v13.45.0
I read the thread ( Upgrading to v14 for a Dockerized deployement ) but can’t figure out what’s the safest way to perform an upgrade to v14 . I also want to install HR and Education modules .
Any idea/link of how to do this ?
build custom image with new apps
mentioned here: Frequently Asked Questions · frappe/frappe_docker Wiki · GitHub
here: frappe_docker/custom-apps.md at main · frappe/frappe_docker · GitHub
and here: Container Builds - #2 by revant_one
Make sure you try your upgrade locally in development env with set of apps that are needed for your use. If you don’t install required apps, the functionality will be missing from new version.
then upgrade as usual.
I went through the links. Thank you.
I don’t have a custom image, however due to breaking the monolith architecture in v14, I will need to install the apps “payments”, “hrms” and “ecommerce_integrations” in addition to “erpnext” of course.
I just wonder where to start in my Portainer installation of Docker Swarm I have 4 stacks:
erpnext
configure_erpnext
create-site
erpnext-backup
as per custom_containers/docker-swarm.md at main · castlecraft/custom_containers · GitHub
Shall I just edit the “erpnext” stack, change the VERSION env variable to v14 then redeploy ?
Or I need to deploy a new stack ?
Thanks,