martes, 31 de agosto de 2021

Servidor ftp para apache

yum -y install vsftpd

systemctl status vsftpd

getenforce

vim /etc/vsftpd/vsftpd.conf

local_enable=YES

anonymous_enable=NO

anon_root=/home/pmb7
local_root=/var/www/html/PMB7
chroot_local_user=YES
allow_writeable_chroot=YES

 

cat /etc/group |grep ftp

useradd -g ftp -d /home/pmb7 pmb7

passwd pmb7 

systemctl restart vsftpd

getfacl /var/www/html/PMB7 

# file: PMB7/
# owner: apache
# group: apache
user::rwx
group::r-x
other::r-x

 

setfacl -m "u:pmb7:rwx" PMB7/

getfacl PMB7/
# file: PMB7/
# owner: apache
# group: apache
user::rwx
user:pmb7:rwx
group::r-x
mask::rwx
other::r-x

 

find PMB7/ -type d -exec chmod 2775 {} \;

find PMB7/ -type f -exec chmod ug+rw {} \;

getfacl PMB7/
# file: PMB7/
# owner: apache
# group: apache
# flags: -s-
user::rwx
user:pmb7:rwx
group::r-x
mask::rwx
other::r-x

find PMB7 -type f -exec chmod 644 {} \;

 

usermod -s /sbin/nologin pmb7

 vim  /etc/pam.d/vsftpd

Comentar la linea

 #auth       required     pam_shells.so

 

systemctl restart vsftpd

 

Fuente:

https://dimitar.me/how-to-create-an-ftp-user-and-allow-write-to-the-apache-root-directory-with-proper-permissions/

https://wiki.archlinux.org/title/Access_Control_Lists_(Espa%C3%B1ol)

https://comoinstalar.me/como-instalar-ftp-en-centos-7/

https://www.muylinux.com/2014/10/15/servidor-ftp-centos-7/



 

miércoles, 18 de agosto de 2021

how to see your hard disk i/o performance? iotop

iotop -oPa

 Total DISK READ :       0.00 B/s | Total DISK WRITE :     105.77 K/s
Actual DISK READ:       0.00 B/s | Actual DISK WRITE:      52.89 K/s
  PID  PRIO  USER     DISK READ  DISK WRITE  SWAPIN     IO>    COMMAND                                                                                                                                     
 2269 be/4 postgres      0.00 B    120.00 K  0.00 %  0.48 % postgres: wal writer process
  991 be/3 root          0.00 B     44.00 K  0.00 %  0.06 % [jbd2/dm-1-8]
  877 be/4 root          0.00 B      0.00 B  0.00 %  0.01 % [kworker/0:2]
 3072 be/4 postgres      0.00 B     56.00 K  0.00 %  0.00 % postgres: odoo sgecfe [local] idle in transaction
 2070 be/4 root          0.00 B      4.00 K  0.00 %  0.00 % rsyslogd -n 


You can execute dd to write one file and see iotop

dd if=/dev/zero of=diskbench bs=1M count=1024 conv=fdatasync


Funte: 

https://haydenjames.io/linux-server-performance-disk-io-slowing-application/