Thanks for the reply..
Yeah i am using the Host=0.0.0.0 but i couldn't connect..

now after installing ngnix and reloading i am getting error like..

Traceback (most recent call last):
  File "./scripts/paster.py", line 33, in <module>
    serve.run()
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/serve.py", line 1056, in run
    invoke(command, command_name, options, args[1:])
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/serve.py", line 1062, in invoke
    exit_code = runner.run(args)
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/serve.py", line 227, in run
    result = self.command()
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/serve.py", line 677, in command
    serve()
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/serve.py", line 661, in serve
    server(app)
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/loadwsgi.py", line 292, in server_wrapper
    **context.local_conf)
  File "/illumina/apps/galaxy/galaxy-dist/lib/galaxy/util/pastescript/loadwsgi.py", line 97, in fix_call
    val = callable(*args, **kw)
  File "/illumina/apps/galaxy/galaxy-dist/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 1342, in server_runner
    serve(wsgi_app, **kwargs)
  File "/illumina/apps/galaxy/galaxy-dist/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 1291, in serve
    request_queue_size=request_queue_size)
  File "/illumina/apps/galaxy/galaxy-dist/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 1134, in __init__
    request_queue_size=request_queue_size)
  File "/illumina/apps/galaxy/galaxy-dist/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 1113, in __init__
    request_queue_size=request_queue_size)
  File "/illumina/apps/galaxy/galaxy-dist/eggs/Paste-1.7.5.1-py2.6.egg/paste/httpserver.py", line 328, in __init__
    HTTPServer.__init__(self, server_address, RequestHandlerClass)
  File "/usr/lib64/python2.6/SocketServer.py", line 402, in __init__
    self.server_bind()
  File "/usr/lib64/python2.6/BaseHTTPServer.py", line 108, in server_bind
    SocketServer.TCPServer.server_bind(self)
  File "/usr/lib64/python2.6/SocketServer.py", line 413, in server_bind
    self.socket.bind(self.server_address)
  File "<string>", line 1, in bind
socket.error: [Errno 98] Address already in use
galaxy.jobs.handler INFO 2013-05-10 10:22:14,360 sending stop signal to worker thread
galaxy.jobs.handler INFO 2013-05-10 10:22:14,360 job handler queue stopped
galaxy.jobs.runners INFO 2013-05-10 10:22:14,360 LWRRunner: Sending stop signal to monitor thread
galaxy.jobs.runners INFO 2013-05-10 10:22:14,360 LWRRunner: Sending stop signal to 3 worker threads
galaxy.jobs.runners INFO 2013-05-10 10:22:14,360 LocalRunner: Sending stop signal to 5 worker threads
galaxy.jobs.handler INFO 2013-05-10 10:22:14,362 sending stop signal to worker thread
galaxy.jobs.handler INFO 2013-05-10 10:22:14,362 job handler stop queue stopped
Exception in thread LWRRunner.monitor_thread (most likely raised during interpreter shutdown):Exception in thread JobHandlerQueue.monitor_thread (most likely raised during interpreter shutdown):

Traceback (most recent call last):
Traceback (most recent call last):




On Thu, May 9, 2013 at 5:15 PM, Dannon Baker <dannon.baker@gmail.com> wrote:
On Thu, May 9, 2013 at 12:21 AM, sridhar srinivasan <sridhar2bioinfo@gmail.com> wrote:
and it is working.. but i could'nt connect to the webpage http://127.0.0.1:8080/ from another system in same network..

By default, galaxy will only be serving on 127.0.0.1 (localhost), which is a loopback and only accessible on the machine itself.  Accessing 127.0.0.1 using another machine on the network is actually making requests to the machine you're trying that from, which I assume isn't running galaxy.

In your universe_wsgi.ini, you can edit this via the 'host' setting.  Just use 0.0.0.0 to listen to all connections.

-Dannon