Good day. I use the standard alfresco job and i need to save the line in a csv file and then transfer this file via FTP to a remote server. How can this be done?
Asked
Active
Viewed 115 times
1 Answers
0
First You have to unable ftp in alfresco.add below propertie in alfresco-global.properties file
ftp.enabled=true
ftp.port=21
You can use any ftp file client to transfer file and also you can use window explorer to transfer file.Open window explorer and enter url "ftp:\localhost\Alfresco". here localhost is ip address

Sanjay
- 2,481
- 1
- 13
- 28
-
1On Linux boxes this only works if Alfresco is running as root which you should never do. If you are running Alfresco as a non-root user, use a higher, non-privileged port, like 2121. You can then use a port-forwarding rule to forward traffic from 21 to port 2121 so that users can use the standard FTP port. – Jeff Potts Dec 07 '18 at 02:30