Priority | medium |
---|---|
Bug ID | 75672 |
CC | syncevolution-issues@syncevolution.org |
Assignee | syncevolution-issues@syncevolution.org |
Summary | syncevo-dbus-server fails to detect that akonadi is running |
Severity | normal |
Classification | Unclassified |
OS | All |
Reporter | niels_ole@salscheider-online.de |
Hardware | Other |
Status | NEW |
Version | 1.4 |
Component | SyncEvolution |
Product | SyncEvolution |
When I try to synchronize my computers with syncevo-http-server (which starts syncevo-dbus-server), it fails with "Akonadi is not running. It can be started with 'akonadictl start'." Akonadi however is running and "syncevolution --print-databases" finds the akonadi collections. The following simple test program prints "Running": #include <Akonadi/ServerManager> #include <iostream> int main() { if (Akonadi::ServerManager::isRunning()) std::cout << "Running" << std::endl; else std::cout << "Not running" << std::endl; return 0; }