Question

removing /etc/nginx/sites-enabled/default.save

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=onsection 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


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
November 1, 2020
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:

  1. sudo ls -l /etc/nginx/sites-enabled

And also check the attributes:

  1. 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

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel