flaxsearch / flaxcode

Automatically exported from code.google.com/p/flaxcode
4 stars 1 forks source link

Will not start on Ubuntu 10.04 #221

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. cd /opt/flax/src/
2. sudo python startflax.py --conf-dir=. --set-admin-password
3. (set password)
4. sudo python startflax.py --conf-dir=.

What is the expected output? What do you see instead?

Don't know what the expected output would be, have never gotten it to 
successfully run.  Here are the errors:

verdow@techcage-07 /opt/flax/src $ sudo python startflax.py --conf-dir=.
/opt/flax/src/flaxauth.py:22: DeprecationWarning: the md5 module is deprecated; 
use hashlib instead
  import md5
Exception in thread Thread-1:
Traceback (most recent call last):
  File "/usr/lib/python2.6/threading.py", line 532, in __bootstrap_inner
    self.run()
  File "/usr/lib/python2.6/threading.py", line 484, in run
    self.__target(*self.__args, **self.__kwargs)
  File "startflax.py", line 168, in _do_stop
    if self.index_server:
AttributeError: 'FlaxMain' object has no attribute 'index_server'

Traceback (most recent call last):
  File "startflax.py", line 276, in <module>
    main()
  File "startflax.py", line 269, in main
    main.start(blocking=True)
  File "startflax.py", line 188, in start
    self._do_start(blocking)
  File "startflax.py", line 145, in _do_start
    self.index_server = indexer.IndexServer()
  File "/opt/flax/src/indexserver/indexer.py", line 324, in __init__
    self.error_count_sv = self.syncman.SharedValue('i',0)
AttributeError: 'SyncManager' object has no attribute 'SharedValue'
/usr/local/lib/python2.6/dist-packages/processing/connection.py:423: 
DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import hmac, sha
/usr/local/lib/python2.6/dist-packages/processing/connection.py:406: 
DeprecationWarning: the sha module is deprecated; use the hashlib module instead
  import hmac, sha
verdow@techcage-07 /opt/flax/src $ 

What version of the product are you using? On what operating system?

flax-source-1.0.0.tgz on Linux Mint 9 64 bit (based off Ubuntu 10.04)

I followed the tutorial here: http://www.rawiriblundell.com/?p=959 but did have 
to install the python processing and htmltotext modules manually. 

Please provide any additional information below.

Original issue reported on code.google.com by armoredc...@gmail.com on 18 Oct 2010 at 6:40

GoogleCodeExporter commented 9 years ago
Almost forgot; I'm running Python 2.6.5

Original comment by armoredc...@gmail.com on 18 Oct 2010 at 6:42