We're Hiring!

OMero server 4.4.1 Ubuntu 12.04 installation

Having a problem deploying OMERO? Please ask new questions at https://forum.image.sc/tags/omero
Please note:
Historical discussions about OMERO. Please look for and ask new questions at https://forum.image.sc/tags/omero

The OMERO.server installation documentation begins here and you can find OMERO.web deployment documentation here.

OMero server 4.4.1 Ubuntu 12.04 installation

Postby thomazeau » Thu Jul 26, 2012 12:29 pm

Hi everybody,
I try to install omero.server 4.4.1 on Ubuntu 12.04 LTS 32 bit server.
Unfortunately, omero admin diagnostics returns me two errors :
Server: DropBox inactive (disabled)
Server: MonitorServer inactive (disabled)

DropBox and MonitorServer logs give me the same error :

File "/omero/lib/python/fsUtil.py", line 94, in monitorPackage
Exception: Libraries required by OMERO.fs monitor unavailable: Linux kernel 2.6.13 or above required. You have: Linux-3.2.0-26-generic-pae-i686-with-Ubuntu-12.04-precise

Python version is 2.7.3
Have an idea ?
I thank you for your time
Jacques
thomazeau
 
Posts: 4
Joined: Wed May 23, 2012 2:44 pm

Re: OMero server 4.4.1 Ubuntu 12.04 installation

Postby cblackburn » Fri Jul 27, 2012 10:06 am

Hi Jacques,

Thanks for bringing this to our attention. The version checking in the DropBox software is failing to cope with Linux kernels 3.0.0 and above. I have created a ticket for this:

http://trac.openmicroscopy.org.uk/ome/ticket/9411

However, it is possible to patch this locally if you want fix this problem immediately. If you are using the server downloaded from our website then you need to patch the following file:

Code: Select all
--- a/omero/lib/python/fsUtil.py
+++ b/omero/lib/python/fsUtil.py
@@ -63,7 +63,7 @@ def monitorPackage():
     elif system == 'Linux':
         kernel = platform.platform().split('-')[1].split('.')
         # Supported Linux kernel version.
-        if int(kernel[0]) == 2 and int(kernel[1]) == 6 and int(kernel[2]) >= 13:
+        if int(kernel[0]) >= 3 or (int(kernel[0]) == 2 and int(kernel[1]) == 6 and int(kernel[2]) >= 13):
             current = 'LINUX_2_6_13+pyinotify'
         # Unsupported Linux kernel version.   
         else:


If your are building your own server from source then the file /components/tools/OmeroFS/fsUtil.py would need to be patched before rebuilding.

If you have any other questions please let me know.

Cheers,

Colin
cblackburn
 
Posts: 85
Joined: Mon May 25, 2009 9:03 pm

Re: OMero server 4.4.1 Ubuntu 12.04 installation

Postby thomazeau » Fri Jul 27, 2012 2:30 pm

Hi Colin,
I applied the patch. It's Ok now ;-)
Thanks a lot
Jacques
thomazeau
 
Posts: 4
Joined: Wed May 23, 2012 2:44 pm


Return to Installation and Deployment

Who is online

Users browsing this forum: No registered users and 1 guest