I tried to use Omero.insight to connect to a freshly installed virtualbox omero but without success.
Here is what I did:
I downloaded omero-vm-4.4.6.ova form the page http://cvs.openmicroscopy.org.uk/snapshots/omero/virtualbox/ and followed the instructions from http://www.openmicroscopy.org/site/support/omero4/users/virtual-appliance.html .
Then I started the virtualBox and the server booted with success.
I successfully connected to it using ssh command
- Code: Select all
ssh omero@localhost -p 2222
I also could access to the server using the web interface at this address: http://localhost:8080/webclient/
Then I downloaded the Omero.insight client and ran it:
- Code: Select all
~/bin/OMERO.clients-4.4.6-ice33-b102.linux$ ./OMEROinsight_unix.sh
I configured the server to be localhost and use the port 4064
I used the Username root with password omero but after a while is popup the message saying that the network is down.
Here is my iptables configuration:
- Code: Select all
sudo iptables -L -n
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:4063
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:4064
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:443
ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:80
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
I previously wiped everything to make sure my previous iptables configuration won't interfere with the connection by running the following script using sudo:
- Code: Select all
#!/bin/sh
echo "Stopping firewall and allowing everyone..."
iptables -F
iptables -X
iptables -t nat -F
iptables -t nat -X
iptables -t mangle -F
iptables -t mangle -X
iptables -P INPUT ACCEPT
iptables -P FORWARD ACCEPT
iptables -P OUTPUT ACCEPT
- Code: Select all
sudo chmod +x stop.fw
sudo ./stop.fw
Then I followed the recommendations given on this page to make sure ports 4064 and 4063 are open http://www.openmicroscopy.org/site/support/omero4/sysadmins/server-security.html
- Code: Select all
iptables -P INPUT drop
iptables -A INPUT -p tcp --dport 4063 -j ACCEPT
iptables -A INPUT -p tcp --dport 4064 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
But without success.
Logs located in /home/omero/OMERO.server/var/log/ on the server couln't give me any usefull information on what's going on.
I looks like I missed something in the configuration but I could find what...
Could someone guide me to find a fix?
Benjamin