We're Hiring!

OME webadmin login page cann't display

General user discussion about using the OMERO platform to its fullest. 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

There are workflow guides for various OMERO functions on our help site - http://help.openmicroscopy.org

You should find answers to any basic questions about using the clients there.

OME webadmin login page cann't display

Postby new2ome » Wed Oct 05, 2011 9:40 am

i followed the instruction to install OME4.3 in Centos43. Every thing looks fine.i can start
[
omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero admin start
No descriptor given. Using etc/grid/default.xml
Waiting on startup. Use CTRL-C to exit
[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero admin status
[omero43@tinamous OMERO.server-Beta-4.3.2]$
[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero web start
Starting OMERO.web... Removed stale /OMERO43/OMERO.server-Beta-4.3.2/var/django.pid
[OK]
[omero43@tinamous OMERO.server-Beta-4.3.2]$
[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero config get
omero.data.dir=/OMERO43
omero.db.name=omero43
omero.db.pass=omero43
omero.db.user=omero43
omero.web.application_host=http://tinamous:8080/
omero.web.application_server=fastcgi-tcp
[omero43@tinamous OMERO.server-Beta-4.3.2]$


when i browse : http://tinamous:8080/
it shows "Internet Explorer cannot display the webpage"

here is my dagnostics information

[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero admin diagnostics

================================================================================
OMERO Diagnostics 4.3.2-8fc94b85-b2882
================================================================================

Commands: java -version 1.6.0 (/usr/bin/java)
Commands: python -V 2.4.3 (/usr/bin/python)
Commands: icegridnode --version 3.3.1 (/usr/bin/icegridnode)
Commands: icegridadmin --version 3.3.1 (/usr/bin/icegridadmin)
Commands: psql --version 8.4.7 (/usr/bin/psql)

Server: icegridnode running
Server: Blitz-0 active (pid = 4597, enabled)
Server: DropBox inactive (disabled)
Server: FileServer active (pid = 4601, enabled)
Server: Indexer-0 active (pid = 4602, enabled)
Server: MonitorServer inactive (disabled)
Server: OMERO.Glacier2 active (pid = 4604, enabled)
Server: OMERO.IceStorm active (pid = 4608, enabled)
Server: PixelData-0 active (pid = 4609, enabled)
Server: Processor-0 active (pid = 4610, enabled)
Server: Tables-0 inactive (disabled)
Server: TestDropBox inactive (enabled)

Log dir: /OMERO43/OMERO.server-Beta-4.3.2/var/log exists

Log files: Blitz-0.log 101.0 KB
Log files: DropBox.log 4.0 KB errors=4 warnings=0
Log files: FileServer.log 0.0 KB
Log files: Indexer-0.log 53.0 KB
Log files: MonitorServer.log 2.0 KB errors=3 warnings=0
Log files: OMEROweb.log 0.0 KB
Log files: PixelData-0.log 6.0 KB errors=0 warnings=1
Log files: Processor-0.log 4.0 KB errors=0 warnings=2
Log files: Tables-0.log n/a
Log files: TestDropBox.log n/a
Log files: master.err 0.0 KB
Log files: master.out 0.0 KB
Log files: Total size 0.17 MB

Parsing Blitz-0.log:[line:106] => Server restarted <=
Parsing Blitz-0.log:[line:417] => Server restarted <=
Parsing Blitz-0.log:[line:577] => Server restarted <=

Environment:OMERO_HOME=(unset)
Environment:OMERO_NODE=(unset)
Environment:OMERO_MASTER=(unset)
Environment:PATH=/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/bin:/bin:/usr/bin:/home/tomcat/bin
Environment:ICE_HOME=(unset)
Environment:LD_LIBRARY_PATH=(unset)
Environment:DYLD_LIBRARY_PATH=(unset)

OMERO data dir: '/OMERO43' Exists? True Is writable? True
OMERO.web status... [RUNNING] (PID 4844)
[omero43@tinamous OMERO.server-Beta-4.3.2]$

would you please give me some clues on how to debug this problem?Thanks a lot.
new2ome
 
Posts: 2
Joined: Wed Oct 05, 2011 8:31 am

Re: OME webadmin login page cann't display

Postby cxallan » Wed Oct 05, 2011 5:32 pm

Setting omero.web.application_server=fastcgi-tcp just enables the FastCGI TCP workers. What have you configured as far as web server goes? Apache? Nginx?
cxallan
Site Admin
 
Posts: 509
Joined: Fri May 01, 2009 8:07 am

Re: OME webadmin login page cann't display

Postby new2ome » Thu Oct 06, 2011 1:47 am

i have installed httpd and done the following also

[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero web config apache
###
### Stanza for OMERO.web created 2011-10-06 09:39:44.351107
###
FastCGIExternalServer "/OMERO43/OMERO.server-Beta-4.3.2/var/omero.fcgi" -host 0.0.0.0:4080

<Directory "/OMERO43/OMERO.server-Beta-4.3.2/var">
Options -Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>

<Directory "/OMERO43/OMERO.server-Beta-4.3.2/lib/python/omeroweb/media">
Options -Indexes FollowSymLinks
Order allow,deny
Allow from all
</Directory>

Alias /appmedia /OMERO43/OMERO.server-Beta-4.3.2/lib/python/omeroweb/media
Alias / "/OMERO43/OMERO.server-Beta-4.3.2/var/omero.fcgi/"

[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero web syncmedia
[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero web start
Starting OMERO.web... [OK]
[omero43@tinamous OMERO.server-Beta-4.3.2]$ bin/omero web status
OMERO.web status... [RUNNING] (PID 16517)


[omero43@tinamous OMERO.server-Beta-4.3.2]$ /sbin/chkconfig --list httpd
httpd 0:off 1:off 2:on 3:on 4:off 5:on 6:off
[omero43@tinamous OMERO.server-Beta-4.3.2]$

but still cannot get the same problem.Please help. Thanks
new2ome
 
Posts: 2
Joined: Wed Oct 05, 2011 8:31 am

Re: OME webadmin login page cann't display

Postby cxallan » Thu Oct 06, 2011 10:42 am

Then assuming you're using Apache and it has the default configuration the following should be set:

Code: Select all
...
omero.web.application_host=http://tinamous:80/
...


and you would access the server on http://tinamous/.
cxallan
Site Admin
 
Posts: 509
Joined: Fri May 01, 2009 8:07 am


Return to User Discussion

Who is online

Users browsing this forum: Google [Bot] and 1 guest

cron