The upgrade process failed to properly upgrade mysql. I am not an expert in mysql, so I don't really know what went wrong. I tried to start knotes, and got a blank note, where there should be stuff. The output of starting it from a terminal looks like this:
Akonadi (which knotes needs) won't start, and evidently has something to do with mysql not starting. Apparently mysql_upgrade no longer exists, and I really don't know enough about mysql to understand what the results from searching are telling me to do -- meaning, nothing I have found works.
systemctl status mysql.service says this:
So I have no clue what went wrong.
Code:
greenman@Crynfyd19.04 ~$ knotes Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString) org.kde.pim.akonadiserver: Starting up the Akonadi Server... org.kde.pim.akonadiserver: database server stopped unexpectedly org.kde.pim.akonadiserver: Database process exited unexpectedly during initial connection! org.kde.pim.akonadiserver: executable: "/usr/sbin/mysqld-akonadi" org.kde.pim.akonadiserver: arguments: ("--defaults-file=/home/greenman/.local/share/akonadi/mysql.conf", "--datadir=/home/greenman/.local/share/akonadi/db_data/", "--socket=/run/user/1000/akonadi/default/mysql.socket", "--pid-file=/run/user/1000/akonadi/default/mysql.pid") org.kde.pim.akonadiserver: stdout: "" org.kde.pim.akonadiserver: stderr: "" org.kde.pim.akonadiserver: exit code: 1 org.kde.pim.akonadiserver: process error: "Unknown error" mysqladmin: connect to server at 'localhost' failed error: 'Can't connect to local MySQL server through socket '/run/user/1000/akonadi/default/mysql.socket' (2)' Check that mysqld is running and that the socket: '/run/user/1000/akonadi/default/mysql.socket' exists! org.kde.pim.akonadiserver: Failed to remove runtime connection config file org.kde.pim.akonadiserver: Shutting down AkonadiServer... org.kde.pim.akonadicontrol: Application '/usr/bin/akonadiserver' exited normally... org.kde.pim.akonadicore: Job error: "" for collection: QVector()
systemctl status mysql.service says this:
Code:
greenman@Crynfyd19.04 ~$ systemctl status mysql.service ● mysql.service - MySQL Community Server Loaded: loaded (/lib/systemd/system/mysql.service; enabled; vendor preset: enabled) Active: active (running) since Sat 2019-10-26 14:13:31 PDT; 15s ago Process: 13931 ExecStartPre=/usr/share/mysql/mysql-systemd-start pre (code=exited, status=0/SUCCESS) Main PID: 13953 (mysqld) Status: "Server is operational" Tasks: 39 (limit: 4915) Memory: 377.6M CGroup: /system.slice/mysql.service └─13953 /usr/sbin/mysqld Oct 26 14:13:29 Crynfyd systemd[1]: Starting MySQL Community Server... Oct 26 14:13:31 Crynfyd systemd[1]: Started MySQL Community Server.
Comment