Hi everyone,
I try to run isk-daemon for two days now. First on a mac osx,
compilation of imgdb.so didn't work. Then I decided to install an
ubuntu. After making compilation of imgdb work and deprecated imports
problem, I finaly succed in running isk-daemon... BUT (there is a
but) I'm facing a new problem without knowing how to solve it.
Everything fine until reactor.run() is called. At this point, an
error is raised : error.ReactorAlreadyRunning() .
I don't know why/how/where reactor is already running.. Maybe ou could
help me with that.
following the complete log whem I try to start isk-dameon :
isk-daemon.py:45: DeprecationWarning:
twisted.internet.error.PotentialZombieWarning was deprecated in
Twisted 10.0.0: There is no longer any potential for zombie process.
from twisted.internet.error import *
isk-daemon : INFO +- Reading settings from default config file
"settings.py"
isk-daemon : INFO +- Initializing image database (Version
0.7) ...
ImageDB : DEBUG loadalldbs(fname='/home/ubuntu/isk-db')
ImageDB : DEBUG Database [/home/ubuntu/isk-db] loaded count: 0
(ids=[])
isk-daemon : INFO | image database initialized
isk-daemon : INFO +- Starting HTTP service endpoints...
isk-daemon : INFO | web admin interface listening for requests at
http://localhost:31128/
isk-daemon : INFO | Cluster mode disabled
isk-daemon : INFO | listening for XML-RPC requests at
http://localhost:31128/RPC
isk-daemon : INFO | listening for SOAP requests at
http://localhost:31128/SOAP
isk-daemon : DEBUG | listening for data export requests at
http://localhost:31128/export
isk-daemon : INFO | HTTP service endpoints started. Binded to all
local network interfaces.
isk-daemon : DEBUG +- Starting internal service endpoint...
isk-daemon : DEBUG | internal service listener started at
pb://localhost:31228
isk-daemon : INFO | Binded to all local network interfaces.
isk-daemon : INFO + init finished. Waiting for requests ...
Traceback (most recent call last):
File "isk-daemon.py", line 1048, in <module>
startIskDaemon()
File "isk-daemon.py", line 1045, in startIskDaemon
reactor.run() #IGNORE:E1101
File "/usr/lib/python2.6/dist-packages/twisted/internet/base.py",
line 1164, in run
self.startRunning(installSignalHandlers=installSignalHandlers)
File "/usr/lib/python2.6/dist-packages/twisted/internet/base.py",
line 1144, in startRunning
ReactorBase.startRunning(self)
File "/usr/lib/python2.6/dist-packages/twisted/internet/base.py",
line 670, in startRunning
raise error.ReactorAlreadyRunning()
twisted.internet.error.ReactorAlreadyRunning
ImageDB : DEBUG savealldbs(fname='/home/ubuntu/isk-db')
ImageDB : ERROR Error saving image database
ImageDB : DEBUG closedb()
isk-daemon : INFO Shuting instance down...
Thanks