Debian Upgrade Stretch To Buster: Difference between revisions
Jump to navigation
Jump to search
(Created page with "This article contains all problems that I encountered when upgrading Debian from 9/Stretch to 10/Buster. Since Debian 9 is already out of standard support, this should not affect a lot of people. == authmysqlrc == === "authdaemond: marker line not found in /etc/courier/authmysqlrc" in /var/log/mail.err === '''Solution:''' Add these lines at the end of the file: ##NAME: MARKER:0 # # Do not remove this section from this configuration file. This section # must be pr...") |
(Added certbot section) |
||
(One intermediate revision by the same user not shown) | |||
Line 13: | Line 13: | ||
Credits: https://sources.debian.org/src/courier-authlib/0.69.0-2/authmysqlrc/ (found by googling "authmysqlrc example") | Credits: https://sources.debian.org/src/courier-authlib/0.69.0-2/authmysqlrc/ (found by googling "authmysqlrc example") | ||
=== "authdaemond: authmysql: cannot parse the MYSQL_OPT setting" in /var/log/mail.err === | |||
Add | |||
MYSQL_OPT 0 | |||
according to above source. | |||
== certbot == | |||
=== snap failed === | |||
Installation using snap did not work, weird error messages appear: | |||
An error occurred while fetching Certbot snap plugins: your version of snapd is outdated. | |||
Please run "sudo snap install core; sudo snap refresh core" in your terminal and try again. | |||
An unexpected error occurred: | |||
requests.exceptions.HTTPError: 404 Client Error: Not Found for url: http://snapd/v2/connections?snap=certbot&interface=content | |||
Removing the certbot snap using <code>snap remove certbot</code> did work at the second attempt. | |||
=== pip worked === | |||
Instead, the Python package should be installed as instructed in [https://certbot.eff.org/instructions?ws=apache&os=pip Certbot Instructions (Apache, pip)] | |||
[[Category:Linux]] | [[Category:Linux]] |
Latest revision as of 17:29, 12 July 2023
This article contains all problems that I encountered when upgrading Debian from 9/Stretch to 10/Buster. Since Debian 9 is already out of standard support, this should not affect a lot of people.
authmysqlrc
"authdaemond: marker line not found in /etc/courier/authmysqlrc" in /var/log/mail.err
Solution: Add these lines at the end of the file:
##NAME: MARKER:0 # # Do not remove this section from this configuration file. This section # must be present at the end of this file.
Credits: https://sources.debian.org/src/courier-authlib/0.69.0-2/authmysqlrc/ (found by googling "authmysqlrc example")
"authdaemond: authmysql: cannot parse the MYSQL_OPT setting" in /var/log/mail.err
Add
MYSQL_OPT 0
according to above source.
certbot
snap failed
Installation using snap did not work, weird error messages appear:
An error occurred while fetching Certbot snap plugins: your version of snapd is outdated. Please run "sudo snap install core; sudo snap refresh core" in your terminal and try again. An unexpected error occurred: requests.exceptions.HTTPError: 404 Client Error: Not Found for url: http://snapd/v2/connections?snap=certbot&interface=content
Removing the certbot snap using snap remove certbot
did work at the second attempt.
pip worked
Instead, the Python package should be installed as instructed in Certbot Instructions (Apache, pip)