Questions tagged [pureftpd]

Pure-FTPd is a free (BSD), secure, production-quality and standard-conformant FTP server. It doesn't provide useless bells and whistles, but focuses on efficiency and ease of use. It provides simple answers to common needs, plus unique useful features for personal users as well as hosting providers.

Pure-FTPd provides MySql, PostgreSQL, LDAP, and custom authentication. It can also run a script after an upload completes.

Pure-FTPd will compile and run on Linux, OpenBSD, NetBSD, DragonflyBSD FreeBSD, Solaris, Tru64, Darwin, Irix, HPUX, AIX and iPhone.

More information about Pure-FTPd can be found here http://www.pureftpd.org/

38 questions
8
votes
1 answer

Installing pure-ftpd in docker (Debian wheezy), error 421

i'm trying to setup a simple container i docker with pure-ftpd running. But on running service pure-ftpd start i get this error: Starting ftp server: Running: /usr/sbin/pure-ftpd -l pam -E -8 UTF-8 -O clf:/var/log/pure-ftpd/transfer.log -u 1000…
stilliard
  • 762
  • 8
  • 27
5
votes
1 answer

Pure-ftpd and Postgreql Auth with password salt

I've recently begun the task of setting up an PureFTP server. At work we use Postgresql 8.4. The schema essentially boils down to, username text password character(40) password_salt text The password is stored as hash of sha1(…
Evan Carroll
  • 78,363
  • 46
  • 261
  • 468
3
votes
1 answer

PureFTP: pure-uploadscript not working

I have a Debian Squeeze Machine with PureFTP installed. PureFTP has a subtool called Upload-Script. This tool can be configured to be called after an upload was done via FTP. However, I can't find a way to get this script-thing running... I want…
Stefan
  • 337
  • 6
  • 20
3
votes
0 answers

stilliard/pure-ftpd: Allow ftp of other docker container?

I have a docker-compose file created that launches 2 services. 1 is prestashop (an online store) which works and the other is the stilliard/pure-ftpd. I would like to be able to view the contents of the prestashop volume. Can anyone help ? Here is…
Ian Gregson
  • 397
  • 4
  • 13
3
votes
2 answers

How do you upload a core PHP file via FTP without interrupting a visitor to your site

Whenever an active PHP based site I look after needs an urgent code change, I change the code offline, test it on my local server and then when happy, upload the updated file to the production server via FTP. This obviously works, but I have found…
SammyBlackBaron
  • 847
  • 3
  • 13
  • 31
3
votes
4 answers

AWS EC2 Passive FTP - Server sent passive reply with unroutable address. Using server address instead

I have pureftp running on an AWS ec2 instance. I'm trying to get it to run in passive mode which I thought was working, however I'm finding it may not be working correctly. I'm receiving the following error in FileZilla Status: …
Code Junkie
  • 7,602
  • 26
  • 79
  • 141
2
votes
1 answer

FTP: 550 Can't change directory to ...: No such file or directory

I just installed a FTP server on my computer with the following script: #!/bin/bash groupadd ftpgroup useradd -g ftpgroup -d /dev/null -s /etc ftpuser pure-pw useradd robert -u ftpuser -d /ftphome pure-pw mkdb cd /etc/pure-ftpd/auth/ ln -s…
Stephane
  • 53
  • 1
  • 1
  • 6
1
vote
1 answer

Can C# .NET Upload Files to an FTPS Server Running pure-ftpd Requiring Explicit FTP over TLS?

When trying to upload a file to an ftp server running pure-ftpd (configured for FTPS not SFTP, requiring explicit FTP over TLS) via .NET an exception is thrown: Unhandled exception. System.Net.WebException: The underlying connection was closed: The…
Colby Clark
  • 181
  • 1
  • 8
1
vote
1 answer

Storage object access with docker FTP getting error 550

I'm actually using an object storage from scaleway. I want to be able to access it with ftp and be able to do some action. Right now I can access and view files/folders from it, but I can't do action, like rename a file, create a dir... I'm using…
executable
  • 3,365
  • 6
  • 24
  • 52
1
vote
1 answer

Using PHP's password_hash with pure-ftpd

I am working with a pure-ftpd server implementation that is setup to pull authentication information from a MySQL database. It looks like the way this implementation was originally setup was to use MD5 authentication, and it seems to work well with…
Adam Ellis
  • 142
  • 13
1
vote
1 answer

How to authenticate user with SHA1 in Java

I used Apache library for hash password for two application in Linux. One of them is Pure-Ftp and another is my Application. I manually save hashed password in Pure-Ftp passwd file, It works fine and user can use Ftp with given user/password. In my…
M-Razavi
  • 3,327
  • 2
  • 34
  • 46
1
vote
2 answers

pure-uploadscript of pure-ftpd is not working on ubuntu

I am using the apt-get install the pure-ftp on ubuntu server 14.04.4 sudo apt-get install pure-ftpd sudo pure-uploadscript -B -r /home/john/hello.sh the hell.sh file, and it's able to run. #!/bin/sh echo "hello" Then, I use FileZilla to upload…
John Zhang
  • 381
  • 1
  • 3
  • 22
1
vote
1 answer

Unable to open config file /usr/lib/ssl/openssl.cnf

I have LEMP and I'm trying to install PureFTPd and Quota. When I enter the following command: openssl req -x509 -nodes -days 7300 -newkey rsa:2048 \ -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem I have…
GSMX
  • 95
  • 3
  • 8
1
vote
1 answer

cPanel PHP API with Kohana

I need to change passwords of FTP users with cPanel.php my cPanel is using pureftpd for creating FTP users, I want to implement change password for FTP user's. The problem is pureftpd is creating virtual users in system and cPanel.php API…
webDev
  • 135
  • 3
  • 13
1
vote
0 answers

pureftp truncates filenames containing whitespace

I'm running 1.0.28-3+squeeze1 of pure-ftpd on a debian 6.0.6 installation: Running: /usr/sbin/pure-ftpd -l pam -d -u 1000 -O clf:/var/log/pure-ftpd/transfer.log -8 UTF-8 -B The pure ftp configuration (/etc/pure-ftpd/conf): ==> AltLog…
1
2 3