diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2012-06-15 01:36:07 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2012-06-15 01:36:07 +0000 |
commit | eb9025193119cd85971f436f322d62960c2f371e (patch) | |
tree | 0361c1b17b7d1a87854ed05ec4c84a8369210ac0 /UPDATING | |
parent | 42201a3a02cf940d7e0514f864eb2436c9de65c5 (diff) |
- Fix two serious bugs with local MySQL backend:
* let Akonadi install default 'mysql' database;
* lower 'wait_timeout' to avoid overflow and avoid premature
connection closing.
- Add update instructions to UPDATING. [1]
- Convert to OPTIONSng.
- Bump PORTREVISION.
KMail 2 and other Akonadi-enabled programs are now working
successfully. Thanks to Dwayne MacKinnon and Mel Flynn who helped
investigating the bug.
Reviewed by: rakuco [1]
Notes
Notes:
svn path=/head/; revision=299296
Diffstat (limited to 'UPDATING')
-rw-r--r-- | UPDATING | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -5,6 +5,35 @@ they are unavoidable. You should get into the habit of checking this file for changes each time you update your ports collection, before attempting any port upgrades. +20120615: + AFFECTS: users of databases/akonadi + AUTHOR: kde@FreeBSD.org + + The latest Akonadi update includes critical bug fixes. Manual + intervention is required for people using local MySQL database (the + default configuration) as backend: + + $ akonadictl stop + + Wait a bit, and make sure that akonadiserver and akonadi_control are + not running. Kill them if needed. Then, you have two alternatives: + + $ mysql_install_db --force \ + --defaults-file=~/.local/share/akonadi/mysql.conf \ + --datadir=~/.local/share/akonadi/db_data \ + --basedir=$(dirname `dirname $(which mysql_install_db)`) + $ rm ~/.local/share/akonadi/mysql.conf + + ...or... + + $ rm -r ~/.local/share/akonadi + + In the latter case, Akonadi will have to recache your personal data + (might take a while). Akonadi is only a cache, no data will be lost. + Then: + + $ akonadictl start + 20120613: AFFECTS: users of graphics/djvulibre and graphics/djvulibre-nox11 AUTHOR: bf@FreeBSD.org |