Hello, I am having the redmine distribution that was setup for me switched from the original server’s to mine using the image sharing function in digitalocean. Unfortunately, when I try to access my redmine after switching over, it says it is under construction and when i login to the console, it just says “cat: /root/REDMINE: No such file or directory” Shouldn’t it be a perfect copy?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
/root/REDMINE
being deleted is weird. A snapshot is a perfect copy of a Droplet so that file should have gotten carried over too. You can stop bash from trying to read the file on login by opening/root/.bashrc
in your favorite text editor and deleting thecat /root/REDMINE
line.Is the new Droplet using a new domain name? The under construction page appears when you try to access the Droplet using a domain name that it doesn’t know about. Open
/etc/nginx/sites-enabled/redmine
in a text editor. You should see a line that looks like this:Replace the old domain with the new one and restart Nginx:
You should then be able to access your Redmine instance.