私は現在、Xubuntu 12.10 x64でSiriServer(要点の横にあります)をセットアップしようとしていますが、サーバーを実行するとpythonがエラーを返します
socket.error: [Errno 98] Address already in use.
サーバーはデフォルトでポート443で実行しようとしていますが、このアプリケーションが機能するには、残念ながらポート443が必要です。
ポート443で何かが実行されているかどうかを再確認するために、次の手順を実行します。
lsof -i :443
ChromeやFirefoxのようなものを開いていない限り、結果はありません。これが、サーバーアプリケーションの実行を試みてからの完全なリターンです。
dustin@dustin-xubuntu:~/Applications/SiriServer$ sudo python siriServer.py
CRITICAL load_plugins Failed loading plugin due to missing module: 'Wordnik library not found. Please install wordnik library! e.g. sudo easy_install wordnik'
INFO <module> Starting Server
Traceback (most recent call last):
File "siriServer.py", line 493, in <module>
server = SiriServer('', options.port)
File "siriServer.py", line 425, in __init__
self.bind((host, port))
File "/usr/lib/python2.7/asyncore.py", line 342, in bind
return self.socket.bind(addr)
File "/usr/lib/python2.7/socket.py", line 224, in meth
return getattr(self._sock,name)(*args)
socket.error: [Errno 98] Address already in use
これがこのアプリケーションのセットアップの最後の部分であるため、私は何をすべきかについて立ち往生しています。どんな助けでも大歓迎です。