cancel
Showing results for 
Search instead for 
Did you mean: 

FTP in Alfresco

sachindac75
Champ on-the-rise
Champ on-the-rise

Hi All,

I am trying to enable FTP in Alfresco . I have made these changes in /opt/alfresco-community/tomcat/shared/classes/alfresco-global.properties

ftp.port=2121
ftp.enabled=true

and when i am trying  to access using ftp://admin:admin@localhost:2121/Alfresco

from browser and i am getting connection refused.

please help me how to check my configuration is correct or not .And even how can i test?

1 ACCEPTED ANSWER

cesarista
World-Class Innovator
World-Class Innovator

Hi,

with the given config you should have the 2121 port open, not the 21. This is probably because you installed Alfresco with a non-priviledged user. There is no problem with this configuration, but if you are in a Windows Server you will probably have to open this port in the firewall, and if you are in Linux maybe you have to open it via iptables.

You can check it in linux with nc command or even with telnet command to this port.

$ nc -v localhost 2121

Regards.

--C.

View answer in original post

8 REPLIES 8

sachindac75
Champ on-the-rise
Champ on-the-rise

its working fine now

cesarista
World-Class Innovator
World-Class Innovator

Check your local firewall and allow for 2121 if necessary.

Regards.

--C.

Thanks Cesar,

i did not check firewall but i checked for port 21 that was also not working .i am worried about whether my configuration is correct or not

cesarista
World-Class Innovator
World-Class Innovator

Hi,

with the given config you should have the 2121 port open, not the 21. This is probably because you installed Alfresco with a non-priviledged user. There is no problem with this configuration, but if you are in a Windows Server you will probably have to open this port in the firewall, and if you are in Linux maybe you have to open it via iptables.

You can check it in linux with nc command or even with telnet command to this port.

$ nc -v localhost 2121

Regards.

--C.