Managing server on Debian

Need help with FileZilla Server? Something does not work as expected? In this forum you may find an answer.

Moderator: Project members

Post Reply
Message
Author
murdoch
504 Command not implemented
Posts: 8
Joined: 2022-01-28 23:46

Managing server on Debian

#1 Post by murdoch » 2022-01-28 23:55

Hi,

I've recently set up Filezilla Server on Debian 11 (no desktop environment), but it listens by default on port 14148 and localhost. I'm unable to connect to it from a remote server with a Filezilla server management GUI.
How do I configure settings.xml to listen on an IP like 192.168.x.x instead of localhost?

Regards
Attachments
filezilla_port14148.png
filezilla_port14148.png (5.5 KiB) Viewed 4154 times

edufissure3
550 Permission denied
Posts: 29
Joined: 2022-01-16 12:04
First name: Eduardo
Last name: Gutierrez

Re: Managing server on Debian

#2 Post by edufissure3 » 2022-01-29 00:18

In ubuntu 20.04 i have something like:

<!--Administration options.-->
<admin>
<local_port>14148</local_port>
<listener>
<address>192.168.1.54</address>
<port>14148</port>
<tls_mode>1</tls_mode>
</listener>
<listener>
<address>0.0.0.0</address>
<port>14148</port>
<tls_mode>1</tls_mode>
</listener>
<password index="1">
<hash>uBe+IJKqljidRWB3gtVpChHj8O0aIhIpBDKWoCvpFGA</hash>
<salt>thgUDuQ5oRQX6qtmmt/9i7Ud4fQOuEXw5v4LBp+nGkQ</salt>
<iterations>100000</iterations>
</password>
<tls min_protocol_version="2" index="2">
<!--Fingerprint of the autogenerated and selfsigned certificate.-->
<fingerprint>8d:a5:a8:01:8f:71:85:45:6f:0c:f4:d7:2e:97:f9:2e:81:09:28:30:40:9c:f3:5d:70:9b:97:6e:a6:1b:32:3c</fingerprint>
</tls>
</admin>

hope it can help, only add listeners....
Or and easier solution is in the remote pc or whatever pc you have, run filezilla-server, config it via GUI and then copy the settings.xml file to the server with all the options and setup at your taste.

User avatar
boco
Contributor
Posts: 26899
Joined: 2006-05-01 03:28
Location: Germany

Re: Managing server on Debian

#3 Post by boco » 2022-01-29 04:52

Note that for listening on any other interface than localhost (via "Additional listeners"), setting an Administration password is mandatory. As an Administration password is set via the interface GUI, you actually need to do this initial configuration on a machine with an IDE. After the password and the additional listeners have been configured via the GUI, the configuration files can be moved to a headless or CLI environment.
### BEGIN SIGNATURE BLOCK ###
No support requests per PM! You will NOT get any reply!!!
FTP connection problems? Please do yourself a favor and read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
### END SIGNATURE BLOCK ###

murdoch
504 Command not implemented
Posts: 8
Joined: 2022-01-28 23:46

Re: Managing server on Debian

#4 Post by murdoch » 2022-01-29 18:46

All right, so how do I set this administrator password on a remote machine?
I've got an installation on Windows (1.2.0 as well), but there doesn't seem to be a configuration file in C:\Program Files\FileZilla Server.

User avatar
boco
Contributor
Posts: 26899
Joined: 2006-05-01 03:28
Location: Germany

Re: Managing server on Debian

#5 Post by boco » 2022-01-30 03:16

All right, so how do I set this administrator password on a remote machine?
You need a machine with a complete installation (server service/daemon and GUI). The initial administrator password can only be set while being connected locally. After the password and listeners are in place, the configuration can be moved.
I've got an installation on Windows (1.2.0 as well), but there doesn't seem to be a configuration file in C:\Program Files\FileZilla Server.
That information is outdated. The new Server stores its configuration in the system profile's local Appdata directory if running as service, or in the user's local Appdata directory if it's running as program.
For the default installation (server installed as service), the most common location would be:

Code: Select all

C:\Windows\System32\config\systemprofile\AppData\Local\filezilla-server\
### BEGIN SIGNATURE BLOCK ###
No support requests per PM! You will NOT get any reply!!!
FTP connection problems? Please do yourself a favor and read Network Configuration.
FileZilla connection test: https://filezilla-project.org/conntest.php
### END SIGNATURE BLOCK ###

User avatar
oibaf
Contributor
Posts: 396
Joined: 2021-07-16 21:02
First name: Fabio
Last name: Alemagna

Re: Managing server on Debian

#6 Post by oibaf » 2022-01-30 07:29

The latest nightly build for debian asks for an admin password at installation time. You might want to try that.

murdoch
504 Command not implemented
Posts: 8
Joined: 2022-01-28 23:46

Re: Managing server on Debian

#7 Post by murdoch » 2022-01-31 16:25

Copied the password configuration from Windows, now I can connect.

Thanks for the help!

Post Reply