Usuário local do CentOS não consegue visualizar diretórios / arquivos via login FTP

3

Atualmente rodando o CentOS 6.5 com vsftpd.

Eu gostaria de explicar o meu processo e, em seguida, ter o processo adequado explicado de volta para mim a partir do zero, que acredito que vá resolver o meu problema.

Atualmente, consigo fazer login no meu servidor via FTP da minha conta de usuário "raiz", mas entendo que essa é uma prática ruim. Então, o que eu preciso fazer é criar outro usuário local / usuário virtual (eu realmente não sei) para poder acessar via FTP o diretório "/ var / www".

(estou simplesmente precisando chegar ao ponto em que eu possa começar a fazer o upload de arquivos da web, já que sou um programador da web, não um administrador de sistemas - mas fiquei agradavelmente surpreso com um servidor dedicado trabalhar com.)

Inicialmente, criei um Usuário Local, mas só consegui fazer o FTP do diretório de usuários "inicial". Então, eu tentei unjar esse usuário via CHROOT (vsftpd.conf). Isso funcionou mais ou menos; os diretórios pai estavam visíveis, mas ao navegar até eles via FTP tudo desapareceu (possivelmente um problema com permissões, eu não sei). Em seguida, tentei rejailing o usuário local e, em seguida, modificando seu diretório "home" de "/ home /" para "/ var / www". Depois de tentar isso, eu fiz o FTP e não pude ver nada, então outra falha. Desde então, retornei o diretório "home" do usuário de volta para "/ home /" e rastejei para SOF confuso como o inferno.

vsftpd.conf

# Allow anonymous FTP? (Beware - allowed by default if you comment this out).
anonymous_enable=NO
#
# Uncomment this to allow local users to log in.
local_enable=YES
#
# Uncomment this to enable any form of FTP write command.
write_enable=YES
#
# Default umask for local users is 077. You may wish to change this to 022,
# if your users expect that (022 is used by most other ftpd's)
local_umask=022
#
# Uncomment this to allow the anonymous FTP user to upload files. This only
# has an effect if the above global write enable is activated. Also, you will
# obviously need to create a directory writable by the FTP user.
#anon_upload_enable=YES
#
# Uncomment this if you want the anonymous FTP user to be able to create
# new directories.
#anon_mkdir_write_enable=YES
#
# Activate directory messages - messages given to remote users when they
# go into a certain directory.
dirmessage_enable=YES
#
# The target log file can be vsftpd_log_file or xferlog_file.
# This depends on setting xferlog_std_format parameter
xferlog_enable=YES
#
# Make sure PORT transfer connections originate from port 20 (ftp-data).
connect_from_port_20=YES
#
# If you want, you can arrange for uploaded anonymous files to be owned by
# a different user. Note! Using "root" for uploaded files is not
# recommended!
#chown_uploads=YES
#chown_username=whoever
#
# The name of log file when xferlog_enable=YES and xferlog_std_format=YES
# WARNING - changing this filename affects /etc/logrotate.d/vsftpd.log
xferlog_file=/var/log/xferlog
#
# Switches between logging into vsftpd_log_file and xferlog_file files.
# NO writes to vsftpd_log_file, YES to xferlog_file
xferlog_std_format=YES
#
# You may change the default value for timing out an idle session.
#idle_session_timeout=600
#
# You may change the default value for timing out a data connection.
#data_connection_timeout=120
#
# It is recommended that you define on your system a unique user which the
# ftp server can use as a totally isolated and unprivileged user.
#nopriv_user=ftpsecure
#
# Enable this and the server will recognise asynchronous ABOR requests. Not
# recommended for security (the code is non-trivial). Not enabling it,
# however, may confuse older FTP clients.
#async_abor_enable=YES
#
# By default the server will pretend to allow ASCII mode but in fact ignore
# the request. Turn on the below options to have the server actually do ASCII
# mangling on files when in ASCII mode.
# Beware that on some FTP servers, ASCII support allows a denial of service
# attack (DoS) via the command "SIZE /big/file" in ASCII mode. vsftpd
# predicted this attack and has always been safe, reporting the size of the
# raw file.
# ASCII mangling is a horrible feature of the protocol.
#ascii_upload_enable=YES
#ascii_download_enable=YES
#
# You may fully customise the login banner string:
#ftpd_banner=Welcome to blah FTP service.
#
# You may specify a file of disallowed anonymous e-mail addresses. Apparently
# useful for combatting certain DoS attacks.
#deny_email_enable=YES
# (default follows)
#banned_email_file=/etc/vsftpd/banned_emails
#
# You may specify an explicit list of local users to chroot() to their home
# directory. If chroot_local_user is YES, then this list becomes a list of
# users to NOT chroot().
chroot_local_user=YES
chroot_list_enable=NO
# (default follows)
#chroot_list_file=/etc/vsftpd/chroot_list
#
# You may activate the "-R" option to the builtin ls. This is disabled by
# default to avoid remote users being able to cause excessive I/O on large
# sites. However, some broken FTP clients such as "ncftp" and "mirror" assume
# the presence of the "-R" option, so there is a strong case for enabling it.
#ls_recurse_enable=YES
#
# When "listen" directive is enabled, vsftpd runs in standalone mode and
# listens on IPv4 sockets. This directive cannot be used in conjunction
# with the listen_ipv6 directive.
listen=YES
#
# This directive enables listening on IPv6 sockets. To listen on IPv4 and IPv6
# sockets, you must run two copies of vsftpd with two configuration files.
# Make sure, that one of the listen options is commented !!
#listen_ipv6=YES

pasv_enable=YES
pasv_min_port=50000
pasv_max_port=51000
port_enable=YES
pasv_address=xxx.xxx.xxx.xxx
pasv_addr_resolve=NO

pam_service_name=vsftpd
userlist_enable=YES
tcp_wrappers=YES

Qualquer ajuda é muito apreciada.

    
por Ryan Prentiss 10.04.2014 / 19:13

1 resposta

3

Primeiro, eu criaria um link simbólico entre / var / www / e minha casa O que isto significa é que quando você chega em / home / usr você pode ir para / home / usr / www e ele irá redirecioná-lo para / var / www

por exemplo.

cd /home/usr
sudo ln -s /var/www www 

execute um comando ls -lrt em / var / www

ls -lrt /var/www/

agora verifique se o seu usr faz parte do grupo que possui www. isso diz a você quem possui esse diretório, se for root: root, é uma prática ruim, dependendo da sua distro, pode ser www-data ou apache etc.

cat /etc/group  | grep -e apache -e http -e ftp -e www
apache:x:48:

se o usr estiver no final do resultado, seu usr faz parte desse grupo se você não tem um grupo que possui www e é root: root crie um

groupadd www-data

assumindo que o grupo é www-data

sudo adduser usr www-data

agora faça do seu usuário o chefe do www

sudo chown usr:www-data -R /var/www

defina as permissões certas de www

sudo chmod 0755 -R /var/www
sudo chmod g+s -R /var/www
    
por 11.04.2014 / 18:51