Can't connect to Alfresco

I have installed Alfresco 5.0 on VM (Centos) in our company. Alfresco logs look fine and Alfresco is working. But if I try to call Alfresco-Website from my Windows Office PC, I won't be able to connect to it. I call the site http: // IP-Address: 8080 / share At first I thought the firewall was blocking port 8080. Other web applications like Joomla or Moodle, which also run on Centos-VM, are accessible over the Internet without problems. I am stuck here and would appreciate any help. Below are the results from netstat, iptables and nmap:

It seems to be listening on port 8080:

netstat -an | grep 8080 | grep -i listen
tcp 0 0 :::8080 :::* LISTEN

      

Here's the iptables output:

iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere state RELATED,ESTABLISHED
ACCEPT icmp -- anywhere anywhere
ACCEPT all -- anywhere anywhere
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:ssh
ACCEPT tcp -- anywhere anywhere tcp dpt:http
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited
ACCEPT tcp -- anywhere anywhere state NEW tcp dpt:mysql

Chain FORWARD (policy ACCEPT)
target prot opt source destination
REJECT all -- anywhere anywhere reject-with icmp-host-prohibited

Chain OUTPUT (policy ACCEPT)
target prot opt source destination

      

NMap:

[root@SLCTEST alfresco-5.0.d]# nmap -sS -O 127.0.0.1

Starting Nmap 5.51 ( http://nmap.org ) at 2015-05-18 17:11 BRT
Nmap scan report for localhost (127.0.0.1)
Host is up (0.000035s latency).
Not shown: 989 closed ports
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
80/tcp open http
139/tcp open netbios-ssn
445/tcp open microsoft-ds
3306/tcp open mysql
5432/tcp open postgresql
7070/tcp open realserver
8009/tcp open ajp13
8080/tcp open http-proxy
8443/tcp open https-alt
No exact OS matches for host (If you know what OS is running on it, see http://nmap.org/submit/ ).
TCP/IP fingerprint:

      

+3


source to share





All Articles