This question has been flagged
1 Reply
3454 Views

Traceback (most recent call last):

  File "/usr/lib/python2.7/threading.py", line 810, in __bootstrap_inner

    self.run()

  File "/usr/lib/python2.7/threading.py", line 763, in run

    self.__target(*self.__args, **self.__kwargs)

  File "/opt/odoo/odoo/openerp/service/server.py", line 282, in http_thread

    self.httpd = ThreadedWSGIServerReloadable(self.interface, self.port, app)

  File "/opt/odoo/odoo/openerp/service/server.py", line 92, in __init__

    handler=RequestHandler)

  File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 410, in __init__

    HTTPServer.__init__(self, (host, int(port)), handler)

  File "/usr/lib/python2.7/SocketServer.py", line 419, in __init__

    self.server_bind()

  File "/opt/odoo/odoo/openerp/service/server.py", line 102, in server_bind

    super(ThreadedWSGIServerReloadable, self).server_bind()

  File "/usr/lib/python2.7/BaseHTTPServer.py", line 108, in server_bind

    SocketServer.TCPServer.server_bind(self)

  File "/usr/lib/python2.7/SocketServer.py", line 430, in server_bind

    self.socket.bind(self.server_address)

  File "/usr/lib/python2.7/socket.py", line 224, in meth

    return getattr(self._sock,name)(*args)

error: [Errno 98] Address already in use

 

Avatar
Discard

This means you already have an active Odoo service running. Do "ps aux" in your terminal and kill all your Odoo services that are running. (Normally just one). Afterwards you'll be able to start yours through command again.

Thanks I realized I have two services running, how do quit them? 

On Wednesday, December 31, 2014, Yenthe <yenthespam@gmail.com> wrote:

This means you already have an active Odoo service running. Do "ps aux" in your terminal and kill all your Odoo services that are running. (Normally just one). Afterwards you'll be able to start yours through command again.

--
Yenthe
Sent by Odoo S.A. using Odoo about Forum Post I get this error after implementing theopensourcerer boot script.


--
Sent from iPhone
Best Answer

Sudo kill -9 procesnumber (so if the procesnumber is 1640 in your list you'll do sudo kill -9 1640)

Avatar
Discard