I installed ubuntu 22.04 server on vmware (in my windows pc).
Then I installed hestiacp .
In hestiacp I created a user called oferweb and created a new domain for this user.
Via ssh i see that the new domain is owned by oferweb. but if use filezilla the owner and group are 1003.
why?
Because 1003
is the UID and GID of your user and group oferweb
.
To configure vsftpd
to use user and group names instead of uid and gid, you should edit /etc/vsftpd.conf
and add this directive text_userdb_names=YES
BUT it won’t work because the users are chrooted with this directive chroot_local_user=YES
You can test it if you want disabling chroot and enabling userdb but you shouldn’t, if you disable chroot, your users could browse your entire system (if they have the righ perms).
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.