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
1
vote
2 answers

Ubuntu 12.04.2 LTS: Subdomain Reverse Proxy FTP Site

I have so far been unable to find a Ubuntu package or configuration that would allow for me to accomplish reverse proxy using subdomains to an internal ftp server like this: FTP Client > ftp://abc.mydomain.com > ftp://some.lan.machine.or.ip FTP…
Inator
  • 994
  • 2
  • 14
  • 33
0
votes
0 answers

get upload progress from pureFtpd

I had a problem . i wanted to upload a file to pureftpd server and get the upload progress. so i created to connections in ftp.one would upload the file and one would constantly return the file size on the server with "SIZE filename". this worked…
Aligh2022
  • 1
  • 3
0
votes
2 answers

Using Pure-ftpd with extauth and not wanting to fire off manual pure-authd pure-ftpd commands

Pure-ftpd has the option to create your own authentication module, however it requires runtime work to get it up: Now, we have to run pure-authd and pure-ftpd, to connect them through a local socket and to tell pure-ftpd to use our external…
Evan Carroll
  • 78,363
  • 46
  • 261
  • 468
0
votes
1 answer

pure-ftpd logs into rolled log file (logrotate.d)

we have quite a large system that relies on FTP messaging. /var/log/pureftpd.log is under surveillance to respond to specific actions. Currently, I noticed an interesting problem where pure-ftpd is logging a new events to the old logfile for example…
Martin Tomko
  • 155
  • 1
  • 1
  • 13
0
votes
1 answer

PURE-FTPd and Apache userdir | how to make public_html directory in home automaticly

I am using an Ubuntu 20.04.2 LTS Server and Apache 2.4.41. I´ve installed pureFTPd with mySQL and inserted some test users. The users register in a frontend and then they are created in the SQL Database via PHP. It works fine. But I want all users…
0
votes
1 answer

Java FTPSClient TLS FTP connection to pureftp server hangs on storeFile

I'm trying to store a file on a pureftp server using the following java code using org.apache.commons.net.ftp import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPReply; import org.apache.commons.net.ftp.FTPSClient; public…
conteh
  • 1,544
  • 1
  • 17
  • 39
0
votes
1 answer

an error occurred while opening that folder on the ftp server

I created ftp server by pureftpd on linux sever: sudo apt-get install pure-ftpd sudo bash echo "yes" > /etc/pure-ftpd/conf/Daemonize echo "yes" > /etc/pure-ftpd/conf/NoAnonymous echo "yes" > /etc/pure-ftpd/conf/ChrootEveryone echo "yes" >…
ron kolel
  • 39
  • 1
  • 11
0
votes
1 answer

pure-ftp TLS : Sorry, cleartext sessions are not accepted on this server

I just configured my pure-ftp server with TLS. Before that it worked fine but with no security. I followed this tutorial and when I want to connect from Internet I get the message : [WARNING] Sorry, cleartext sessions are not accepted on this…
P. Debrabant
  • 131
  • 1
  • 13
0
votes
1 answer

Error when starting pure-ftpd

I installed pure-ftpd in freenas-jail. OS Freenas 11. Installed from ports Now, when I try to start the server, I get an error: /usr/local/etc/rc.d/pure-ftpd: WARNING: run_rc_command: cannot run /usr/local/sbin/pure-config.pl In /var/log/messages…
virvaldium
  • 226
  • 3
  • 13
0
votes
0 answers

How is it different to start a service using paramiko in linux rather than executing another commands such as pkill?

Following this post (Running Sudo Command with paramiko) I was able to run commands as sudo remotely. I can execute sudo pkill -2 pure-ftpd successfully, but when I try to execute sudo service pure-ftpd start I can't see any effect on the server…
0
votes
0 answers

Android FTP Client can't send a file to a Docker FTP Server

I try to connect a FTP client from my Android device to a FTP server, hosted in a docker (via the stilliard/pure-ftpd image). Connection : Ok, Login : Ok, but when I try send a file, I have this exception from my Android device : failed to connect…
Mickael
  • 11
  • 3
0
votes
1 answer

Unable to Retrieve Directory Using ProFTPD(WHM)

Well, after looking for many solutions. I came here now. I am setting up WHM/cPanel for hosting website. Everything was going smooth but I am stuck on FTP connection (Server sent passive reply with unroutable address. Using server address…
Aasim Khan
  • 1
  • 1
  • 2
0
votes
2 answers

What is correct way for an FTP server to prevent corrupted uploaded files because of late append?

Using pureftpd I uploaded 1% of a 1276541542 byte file or about 15 megs. Then I killed the network connection abnormally to simulate a client getting kicked off their ISP. Then I waited an hour. Then I re-connected and issued an APPE (append)…
Andrew Arrow
  • 4,248
  • 9
  • 53
  • 80
0
votes
1 answer

Where does pure-ftpd call its uploadscript?

I've been looking through pure-ftpd-1.0.42 source code: https://github.com/jedisct1/pure-ftpd Trying to find when it triggers: https://github.com/jedisct1/pure-ftpd/blob/master/src/pure-uploadscript.c i.e. when does it run the uploadscript after a…
Andrew Arrow
  • 4,248
  • 9
  • 53
  • 80
0
votes
0 answers

ESP8266 doesn't accept AT Commands anymore

So recently I've been working on some kind of project that uses arduino and esp8266 to make an HTTP get request from a basic website that I created. But somehow I messed things up while sending AT commands using the arduino Serial monitor. Now I…