Looking for FTP server that allows user management from database

Posted by hughesdan on Server Fault See other posts from Server Fault or by hughesdan
Published on 2012-06-04T03:41:40Z Indexed on 2012/06/04 4:42 UTC
Read the original article Hit count: 428

Filed under:
|
|

I'm planning a server application that will handle files uploaded via FTP. The application must parse text documents that it receives and write them to a database (most likely a document-oriented database like Mongo). And the application must also relay all large binary files it receives to Amazon S3 for storage and hosting. I'd like to manage all aspects of the FTP server programmatically. For example, when a user registers via a web page the application should be able to create the user account in the database and provision a directory on the server for receiving files. I'm using a Linux server but am otherwise open to considering any programming language or framework. I experimented with VSFTPD but didn't like the way the application relies on config files and the creation of users and directories via the command line. Can someone please recommend what server framework I should consider? I'm a little biased toward solutions that leverage Javascript/Nodejs or Python. However, I'm open to anything that can run on a Linux box.

© Server Fault or respective owner

Related posts about linux

Related posts about ftp