Skip to Content
Menu
This question has been flagged
1 Reply
3407 Views

[2013-03-23 19:47:45,949][?] ERROR:httpd:Error occured when starting the server daemon. Traceback (most recent call last): File "/opt/openerp/server/bin/service/http_server.py", line 147, in __init__ self.server = ThreadedHTTPServer((interface, port), handler, proto=self._RealProto) File "/opt/openerp/server/bin/service/http_server.py", line 75, in __init__ HTTPServer.__init__(self, addr, requestHandler) File "/usr/lib/python2.7/SocketServer.py", line 408, in __init__ 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 419, 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] Adresse déjà utilisée

Avatar
Discard
Author

sudo netstat -alntp | grep LIST [sudo] password for wafae: tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 404/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 545/cupsd
tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 930/postgres
tcp 0 0 0.0.0.0:8069 0.0.0.0:* LISTEN 2388/python
tcp 0 0 0.0.0.0:8070 0.0.0.0:* LISTEN 2388/python
tcp 0 0 0.0.0.0:8071 0.0.0.0:*

Best Answer

OpenERP is already up and runnding.

this is probably due to a previous installation (.deb pkgs for instance).

you can check it by doing ps aux | grep openerp and looking at the list of installed packages with dpkg -l | grep openerp.

Anyway, you can keep the old instance by just changing the ports in the config file (eg: /etc/openerp-server.conf)

Avatar
Discard
Author

tnx david i changed the ports in the config file and it's working ^_^