Hello,
I renewed my SSL certificate via let’s encrypt. I always could do it with the configure files that I had however this time I could not run nginx ([emerg] 4026#4026: duplicate listen options for [::]:80 in /etc/nginx/sites-enabled/default.save:31
)and I found the problem is related to perhaps new nginx version that is updated by Digital Ocean automatically. I needed to remove default_server ipv6only=on
from /etc/nginx/sites-enabled/default
then I noticed that still I could not run nginx with the same errors. Then I noticed that I need to basically delete /etc/nginx/sites-enabled/default.save
How could I delete this file? rm: remove write-protected regular file ‘/etc/nginx/sites-enabled/default.save’? y rm: cannot remove ‘/etc/nginx/sites-enabled/default.save’: Permission denied
I logged in via ssh connection with keys.
By the way I could edit the file with nono and remove default_server ipv6only=on
section and now it is working fine. By the way, what exactly default_server ipv6only=on
does and if one day I want to delete ‘/etc/nginx/sites-enabled/default.save’ how should I get ride of permission denied? thanks
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!
Accepted Answer
Hi there @Sam80,
A file with a .save
suffix is usually created when editing the original file with a text editor like nano
. So it should be ok to remove the default.save
file.
To do so try running the rm
command with sudo
so that you could delete the file:
sudo rm default.save
If this does not work, make sure to check the permissions of the file with the following command:
- sudo ls -l /etc/nginx/sites-enabled
And also check the attributes:
- sudo lsattr /etc/nginx/sites-enabled/default.save
Regarding the ipv6only
parameter, it determines whether an IPv6 socket listening on a wildcard address [::]
will accept only IPv6 connections or both IPv6 and IPv4 connections. This parameter is turned on by default. It can only be set once on start.
Let me know how it goes! Regards, Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.