voila ce que ça donne je croix que c regler?
si c le cas merci bcp mon ami
freekdz@freekdz-OptiPlex-755:~$ rm -fr /home/freekdz/.local/share/akonadi
freekdz@freekdz-OptiPlex-755:~$ akonadictl startStarting Akonadi Server...
done.
freekdz@freekdz-OptiPlex-755:~$ Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
search paths: ("/usr/lib/lightdm/lightdm", "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games", "/usr/sbin", "/usr/local/sbin", "/usr/local/libexec", "/usr/libexec", "/opt/mysql/libexec", "/opt/local/lib/mysql5/bin", "/opt/mysql/sbin")
Found mysql_install_db: "/usr/bin/mysql_install_db"
Found mysqlcheck: "/usr/bin/mysqlcheck"
Installing MySQL system tables...
Could not open required defaults file: /etc/akonadi/mysql-global.conf
Fatal error in defaults handling. Program aborted
Installation of system tables failed! Examine the logs in
/home/freekdz/.local/share/akonadi/db_data/ for more information.
You can try to start the mysqld daemon with:
shell> /usr/sbin/mysqld --skip-grant &
and use the command line tool /usr/bin/mysql
to connect to the mysql database and look at the grant tables:
shell> /usr/bin/mysql -u root mysql
mysql> show tables
Try 'mysqld --help' if you have problems with paths. Using --log
gives you a log in /home/freekdz/.local/share/akonadi/db_data/ that may be helpful.
Please consult the MySQL manual section
'Problems running mysql_install_db', and the manual section that
describes problems on your OS. Another information source are the
MySQL email archives available at http://lists.mysql.com/.
Please check all of the above before mailing us! And remember, if
you do mail us, you MUST use the /usr/bin/mysqlbug script!
Failed to use database "akonadi"
Query error: "Unknown database 'akonadi' QMYSQL: Unable to execute query"
Database error: "Can't connect to local MySQL server through socket '/home/freekdz/.local/share/akonadi/socket-freekdz-OptiPlex-755/mysql.socket' (2) QMYSQL: Unable to connect"
Trying to create database now...
Database "akonadi" opened using driver "QMYSQL"
DbInitializer::run()
checking table "SchemaVersionTable"
"CREATE TABLE SchemaVersionTable (version INTEGER NOT NULL DEFAULT 0) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
"INSERT INTO SchemaVersionTable (version) VALUES (20)"
checking table "ResourceTable"
"CREATE TABLE ResourceTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARBINARY(255) NOT NULL UNIQUE, isVirtual BOOL DEFAULT false) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
"INSERT INTO ResourceTable (name,isVirtual) VALUES ('akonadi_search_resource',true)"
checking table "CollectionTable"
"CREATE TABLE CollectionTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, remoteId VARBINARY(255), remoteRevision VARBINARY(255), name VARBINARY(255) NOT NULL, parentId BIGINT, resourceId BIGINT NOT NULL, subscribed BOOL NOT NULL DEFAULT true, cachePolicyInherit BOOL NOT NULL DEFAULT true, cachePolicyCheckInterval INTEGER NOT NULL DEFAULT -1, cachePolicyCacheTimeout INTEGER NOT NULL DEFAULT -1, cachePolicySyncOnDemand BOOL NOT NULL DEFAULT false, cachePolicyLocalParts VARBINARY(255), queryString VARBINARY(1024), queryLanguage VARBINARY(255), FOREIGN KEY (parentId) REFERENCES CollectionTable(id) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (resourceId) REFERENCES ResourceTable(id) ON DELETE CASCADE ON UPDATE CASCADE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
adding index "CREATE UNIQUE INDEX CollectionTable_parentAndNameIndex ON CollectionTable (parentId,name)"
"INSERT INTO CollectionTable (resourceId,name,parentId) VALUES (1,'Search',NULL)"
checking table "MimeTypeTable"
"CREATE TABLE MimeTypeTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARBINARY(255) NOT NULL UNIQUE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
"INSERT INTO MimeTypeTable (name) VALUES ('application/octet-stream')"
"INSERT INTO MimeTypeTable (name) VALUES ('message/rfc822')"
"INSERT INTO MimeTypeTable (name) VALUES ('text/calendar')"
"INSERT INTO MimeTypeTable (name) VALUES ('text/vcard')"
"INSERT INTO MimeTypeTable (name) VALUES ('inode/directory')"
checking table "PimItemTable"
"CREATE TABLE PimItemTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, rev INTEGER NOT NULL DEFAULT 0, remoteId VARBINARY(255), remoteRevision VARBINARY(255), collectionId BIGINT, mimeTypeId BIGINT, datetime TIMESTAMP DEFAULT CURRENT_TIMESTAMP, atime TIMESTAMP, dirty BOOL, size BIGINT NOT NULL DEFAULT 0, FOREIGN KEY (collectionId) REFERENCES CollectionTable(id) ON DELETE CASCADE ON UPDATE CASCADE, FOREIGN KEY (mimeTypeId) REFERENCES MimeTypeTable(id) ON DELETE CASCADE ON UPDATE CASCADE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
adding index "CREATE INDEX PimItemTable_collectionIndex ON PimItemTable (collectionId)"
checking table "FlagTable"
"CREATE TABLE FlagTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARBINARY(255) NOT NULL UNIQUE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
"INSERT INTO FlagTable (name) VALUES ('important')"
"INSERT INTO FlagTable (name) VALUES ('has_attachment')"
"INSERT INTO FlagTable (name) VALUES ('spam')"
"INSERT INTO FlagTable (name) VALUES ('\\ANSWERED')"
"INSERT INTO FlagTable (name) VALUES ('\\FLAGGED')"
"INSERT INTO FlagTable (name) VALUES ('\\DELETED')"
"INSERT INTO FlagTable (name) VALUES ('\\SEEN')"
"INSERT INTO FlagTable (name) VALUES ('\\DRAFT')"
checking table "PartTable"
"CREATE TABLE PartTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, pimItemId BIGINT NOT NULL, name VARBINARY(255) NOT NULL, data LONGBLOB, datasize BIGINT NOT NULL, version INTEGER DEFAULT 0, external BOOL DEFAULT false, FOREIGN KEY (pimItemId) REFERENCES PimItemTable(id) ON DELETE CASCADE ON UPDATE CASCADE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
adding index "CREATE UNIQUE INDEX PartTable_pimItemIdNameIndex ON PartTable (pimItemId,name)"
adding index "CREATE INDEX PartTable_pimItemNameIndex ON PartTable (name)"
checking table "CollectionAttributeTable"
"CREATE TABLE CollectionAttributeTable (id BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY, collectionId BIGINT NOT NULL, type LONGBLOB NOT NULL, value LONGBLOB, FOREIGN KEY (collectionId) REFERENCES CollectionTable(id) ON DELETE CASCADE ON UPDATE CASCADE) COLLATE=utf8_general_ci DEFAULT CHARSET=utf8"
adding index "CREATE INDEX CollectionAttributeTable_collectionIndex ON CollectionAttributeTable (collectionId)"
checking relation "PimItemFlagRelation"
"CREATE TABLE PimItemFlagRelation (PimItem_id INTEGER REFERENCES PimItemTable(id), Flag_id INTEGER REFERENCES FlagTable(id), PRIMARY KEY (PimItem_id, Flag_id))"
checking relation "CollectionMimeTypeRelation"
"CREATE TABLE CollectionMimeTypeRelation (Collection_id INTEGER REFERENCES CollectionTable(id), MimeType_id INTEGER REFERENCES MimeTypeTable(id), PRIMARY KEY (Collection_id, MimeType_id))"
checking relation "CollectionPimItemRelation"
"CREATE TABLE CollectionPimItemRelation (Collection_id INTEGER REFERENCES CollectionTable(id), PimItem_id INTEGER REFERENCES PimItemTable(id), PRIMARY KEY (Collection_id, PimItem_id))"
DbInitializer::run() done
skipping update 2
skipping update 3
skipping update 4
skipping update 8
skipping update 10
skipping update 12
skipping update 13
skipping update 14
skipping update 15
skipping update 16
skipping update 17
skipping update 18
skipping update 19
skipping update 20
Nepomuk Query Server not available
DataStore::unhideAllPimItems()
Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
PLUGINS: "/usr/share/akonadi/agents"
PLUGINS: ("akonadinepomukfeederagent.desktop", "akonotesresource.desktop", "birthdaysresource.desktop", "calendarsearchagent.desktop", "contactsresource.desktop", "davgroupwareresource.desktop", "icalresource.desktop", "imapresource.desktop", "invitationsagent.desktop", "kabcresource.desktop", "kalarmdirresource.desktop", "kalarmresource.desktop", "kcalresource.desktop", "kdeaccountsresource.desktop", "knutresource.desktop", "kolabproxyresource.desktop", "localbookmarksresource.desktop", "maildirresource.desktop", "maildispatcheragent.desktop", "mailfilteragent.desktop", "mboxresource.desktop", "microblog.desktop", "mixedmaildirresource.desktop", "mtdummyresource.desktop", "nepomuktagresource.desktop", "nntpresource.desktop", "notesresource.desktop", "openxchangeresource.desktop", "pop3resource.desktop", "vcarddirresource.desktop", "vcardresource.desktop")
search paths: ("/usr/lib/lightdm/lightdm", "/usr/local/sbin", "/usr/local/bin", "/usr/sbin", "/usr/bin", "/sbin", "/bin", "/usr/games")
PLUGINS inserting: "akonadi_nepomuk_feeder" 0 ("Unique", "Autostart", "NoConfig")
PLUGINS inserting: "akonadi_akonotes_resource" 0 ("Resource", "Notes")
PLUGINS inserting: "akonadi_birthdays_resource" 0 ("Resource", "Unique")
PLUGINS inserting: "akonadi_calendarsearch_agent" 0 ("Unique", "NoConfig")
PLUGINS inserting: "akonadi_contacts_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_davgroupware_resource" 0 ("Resource", "FreeBusyProvider")
PLUGINS inserting: "akonadi_ical_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_imap_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_invitations_agent" 0 ("NoConfig")
PLUGINS inserting: "akonadi_kabc_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_kalarm_dir_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_kalarm_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_kcal_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_kdeaccounts_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_knut_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_kolabproxy_resource" 0 ("Resource", "Unique")
PLUGINS inserting: "akonadi_localbookmarks_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_maildir_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_maildispatcher_agent" 0 ("Unique", "Autostart")
PLUGINS inserting: "akonadi_mailfilter_agent" 0 ("Unique", "Autostart")
PLUGINS inserting: "akonadi_mbox_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_microblog_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_mixedmaildir_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_mailtransport_dummy_resource" 0 ("Resource", "MailTransport")
PLUGINS inserting: "akonadi_nepomuktag_resource" 0 ("Resource", "Virtual", "Unique", "NoConfig")
PLUGINS inserting: "akonadi_nntp_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_notes_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_openxchange_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_pop3_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_vcarddir_resource" 0 ("Resource")
PLUGINS inserting: "akonadi_vcard_resource" 0 ("Resource")
Akonadi server is now operational.
"/usr/bin/akonadi_nepomuk_feeder(26656)" Soprano: "QLocalSocket::connectToServer: Invalid name"
"/usr/bin/akonadi_nepomuk_feeder(26656)" Soprano: "QLocalSocket::connectToServer: Invalid name"
"/usr/bin/akonadi_nepomuk_feeder(26656)" Soprano: "QLocalSocket::connectToServer: Invalid name"
Known subscriber "akonadi_nepomuk_feeder" subscribes again
Known subscriber "akonadi_maildispatcher_agent" subscribes again
Known subscriber "akonadi_maildispatcher_agent" subscribes again
QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave.
Database "akonadi" opened using driver "QMYSQL"
Known subscriber "akonadi_maildispatcher_agent" subscribes again
Database "akonadi" opened using driver "QMYSQL"
Known subscriber "akonadi_mailfilter_agent" subscribes again
Known subscriber "akonadi_mailfilter_agent" subscribes again
Known subscriber "akonadi_mailfilter_agent" subscribes again
Database "akonadi" opened using driver "QMYSQL"
Database "akonadi" opened using driver "QMYSQL"
search paths: ("/usr/lib", "/usr/lib/qt4/plugins/", "/usr/lib/kde4/", "/usr/lib/kde4/plugins/", "/usr/lib/qt4/plugins/", "/usr/lib/kde4/plugins", "/usr/lib/i386-linux-gnu/qt4/plugins", "/usr/lib/qt4/plugins", "/usr/bin", "/home/freekdz/.kde/lib/kde4/")
Agent instance created in separate process.
Known subscriber "AkonadiAgentServer" subscribes again
Database "akonadi" opened using driver "QMYSQL"
AkonadiAgentServer(26676)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
AkonadiAgentServer(26676)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
akonadi_maildispatcher_agent(26657)/kdecore (KConfigSkeleton) KCoreConfigSkeleton::writeConfig:
AkonadiAgentServer(26676) MaildirResource::maildirForCollection: Got incomplete ancestor chain: Collection ID: 3 remote ID: ""
name: "outbox"
url: KUrl("akonadi:?collection=3")
parent: 2 "/home/freekdz/.local/share/local-mail"
resource: "akonadi_maildir_resource_0"
rights: QFlags(0x1|0x2|0x4|0x8|0x10|0x20)
contents mime type: ("message/rfc822", "inode/directory")
CachePolicy:
inherit: true
interval: -1
timeout: 1
sync on demand: true
local parts: ("ENVELOPE")
CollectionStatistics:
count: -1
unread count: -1
size: -1
[/usr/bin/nepomukservicestub] Using Virtuoso Version: "6.1.4.3127-pthreads"
[/usr/bin/nepomukservicestub] Using Virtuoso Version: "6.1.4.3127-pthreads"
[/usr/bin/nepomukservicestub] void Soprano::VirtuosoController::writeConfigFile(const QString&, const BackendSettings&) "/tmp/virtuoso_X26678.ini"
[/usr/bin/nepomukservicestub] Starting Virtuoso server: "/usr/bin/virtuoso-t" ("+foreground", "+configfile", "/tmp/virtuoso_X26678.ini", "+wait")
[/usr/bin/nepomukservicestub] "
"
[/usr/bin/nepomukservicestub] " Sat Mar 08 2014
"
[/usr/bin/nepomukservicestub] "09:55:03 OpenLink Virtuoso Universal Server
"
[/usr/bin/nepomukservicestub] "09:55:03 Version 06.01.3127-pthreads for Linux as of Feb 15 2012
"
[/usr/bin/nepomukservicestub] "09:55:03 uses parts of OpenSSL, PCRE, Html Tidy
"
[/usr/bin/nepomukservicestub] "09:55:03 Entering Lite Mode
"
[/usr/bin/nepomukservicestub] "09:55:03 SQL Optimizer enabled (max 1000 layouts)
"
[/usr/bin/nepomukservicestub] "09:55:04 Compiler unit is timed at 0.003814 msec
"
[/usr/bin/nepomukservicestub] "09:55:04 Checkpoint started
"
[/usr/bin/nepomukservicestub] "09:55:04 Roll forward started
"
[/usr/bin/nepomukservicestub] "09:55:04 Roll forward complete
"
[/usr/bin/nepomukservicestub] "09:55:05 Checkpoint started
"
[/usr/bin/nepomukservicestub] "09:55:05 Checkpoint finished, log reused
"
[/usr/bin/nepomukservicestub] "09:55:07 Server online at 1111 (pid 26695)
"
[/usr/bin/nepomukservicestub] Virtuoso started: 26695
[/usr/bin/nepomukservicestub] Soprano::ODBC::ConnectionPool::ConnectionPool(const QString&, const QStringList&, QObject*) "host=localhost:1111;uid=dba;pwd=dba;driver=/usr/lib/odbc/virtodbc_r.so"
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() Nepomuk::GraphMaintainer(0x939d9c8)
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() Nepomuk::GraphMaintainer(0x939d9c8)
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] void Soprano::VirtuosoController::writeConfigFile(const QString&, const BackendSettings&) "/tmp/virtuoso_h26678.ini"
[/usr/bin/nepomukservicestub] Starting Virtuoso server: "/usr/bin/virtuoso-t" ("+foreground", "+configfile", "/tmp/virtuoso_h26678.ini", "+wait")
[/usr/bin/nepomukservicestub] "
"
[/usr/bin/nepomukservicestub] " Sat Mar 08 2014
"
[/usr/bin/nepomukservicestub] "09:55:07 OpenLink Virtuoso Universal Server
"
[/usr/bin/nepomukservicestub] "09:55:07 Version 06.01.3127-pthreads for Linux as of Feb 15 2012
"
[/usr/bin/nepomukservicestub] "09:55:07 uses parts of OpenSSL, PCRE, Html Tidy
"
[/usr/bin/nepomukservicestub] "09:55:08 Entering Lite Mode
"
[/usr/bin/nepomukservicestub] "09:55:08 SQL Optimizer enabled (max 1000 layouts)
"
[/usr/bin/nepomukservicestub] "09:55:08 Compiler unit is timed at 0.005235 msec
"
[/usr/bin/nepomukservicestub] "09:55:09 Checkpoint started
"
[/usr/bin/nepomukservicestub] "09:55:09 Roll forward started
"
[/usr/bin/nepomukservicestub] "09:55:09 Roll forward complete
"
[/usr/bin/nepomukservicestub] "09:55:09 Checkpoint started
"
[/usr/bin/nepomukservicestub] "09:55:09 Checkpoint finished, log reused
"
[/usr/bin/nepomukservicestub] "09:55:11 Server online at 1112 (pid 26701)
"
[/usr/bin/nepomukservicestub] Virtuoso started: 26701
[/usr/bin/nepomukservicestub] Soprano::ODBC::ConnectionPool::ConnectionPool(const QString&, const QStringList&, QObject*) "host=localhost:1112;uid=dba;pwd=dba;driver=/usr/lib/odbc/virtodbc_r.so"
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() QThread(0x91a5aa8)
[/usr/bin/nepomukservicestub] Shutting down virtuoso instance 26701
[/usr/bin/nepomukservicestub] Virtuoso server stopped: 0
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] (Soprano::Redland::BackendPlugin) creating model of type "hashes" with options "hash-type='memory',contexts='yes'"
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x9616fc0)
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::LocalServer::incomingConnection(quintptr)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCorePrivate::addConnection(Soprano::Server::ServerConnection*) New connection. New count: 1
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() Soprano::Server::ServerConnection(0x9854200)
akonadi_nepomuk_feeder(26656) FeederPluginloader::feederPluginsForMimeType: No feeder for type "inode/directory" found
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x982c800, name = "Thread (pooled)")
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x95926a8, name = "Thread (pooled)")
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() QThread(0x96c9fa0, name = "Thread (pooled)")
[/usr/bin/nepomukservicestub] QObject::connect: Cannot queue arguments of type 'Soprano::Statement'
(Make sure 'Soprano::Statement' is registered using qRegisterMetaType().)
Akonadi::NepomukSearchEngine(0x831f6b0) QDBusServiceWatcher(0x837bbd8)
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::LocalServer::incomingConnection(quintptr)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCorePrivate::addConnection(Soprano::Server::ServerConnection*) New connection. New count: 2
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::LocalServer::incomingConnection(quintptr)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCorePrivate::addConnection(Soprano::Server::ServerConnection*) New connection. New count: 3
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() Soprano::Server::ServerConnection(0x9835d10)
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::LocalServer::incomingConnection(quintptr)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCorePrivate::addConnection(Soprano::Server::ServerConnection*) New connection. New count: 4
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::LocalServer::incomingConnection(quintptr)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCorePrivate::addConnection(Soprano::Server::ServerConnection*) New connection. New count: 5
[/usr/bin/nepomukservicestub] Soprano::ODBC::Connection::Connection() Soprano::Server::ServerConnection(0x96bb290)
[/usr/bin/nepomukservicestub] virtual void Soprano::Server::ServerConnection::run() thread done.
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() Soprano::Server::ServerConnection(0x96bb290)
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCore::serverConnectionFinished()
[/usr/bin/nepomukservicestub] virtual Soprano::Server::ServerConnection::~ServerConnection() Removing connection
[/usr/bin/nepomukservicestub] void Soprano::Server::ServerCore::serverConnectionFinished() Connection removed. Current count: 4
[/usr/bin/nepomukservicestub] virtual Soprano::ODBC::Connection::~Connection() QThread(0x9616fc0)