npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vsftpd-server-setup-ubuntu

v0.0.1

Published

BASH VsFTPD SERVER SETUP UBUNTU

Downloads

11

Readme

#SETTING VsFTPD On VPS Ubuntu Server Or Ubuntu Desktop

sudo apt-get install vsftpd
sudo ufw allow 20/tcp
#Rule added
#Rule added (v6)
sudo ufw allow 21/tcp
#Skipping adding existing rule
#Skipping adding existing rule (v6)
sudo ufw allow 990/tcp
#Rule added
#Rule added (v6)
sudo ufw allow 40000:50000/tcp
#Rule added
#Rule added (v6)
sudo ufw enable
#Firewall is active and enabled on system startup
sudo ufw status
#Status: active
#
#To                         Action      From
#--                         ------      ----

sudo nano /etc/vsftpd.conf

    listen=NO
    listen_ipv6=YES
    anonymous_enable=NO
    local_enable=YES
    write_enable=YES
    local_umask=022
    dirmessage_enable=YES
    use_localtime=YES
    xferlog_enable=YES
    connect_from_port_20=YES
    chroot_local_user=YES
    secure_chroot_dir=/var/run/vsftpd/empty
    pam_service_name=vsftpd
    rsa_cert_file=/etc/ssl/certs/ssl-cert-snakeoil.pem
    rsa_private_key_file=/etc/ssl/private/ssl-cert-snakeoil.key
    ssl_enable=NO
    pasv_enable=Yes
    pasv_min_port=10000
    pasv_max_port=10100
    allow_writeable_chroot=YES

sudo service vsftpd restart
sudo service vsftpd status
#● vsftpd.service - vsftpd FTP server
#   Loaded: loaded (/lib/systemd/system/vsftpd.service; enabled; vendor preset: enabled)
#   Active: active (running) since Thu 2019-07-25 14:14:38 UTC; 53s ago
#  Process: 18475 ExecStartPre=/bin/mkdir -p /var/run/vsftpd/empty (code=exited, status=0/SUCC
# Main PID: 18481 (vsftpd)
#    Tasks: 1 (limit: 491)
#   Memory: 720.0K
#   CGroup: /system.slice/vsftpd.service
#           └─18481 /usr/sbin/vsftpd /etc/vsftpd.conf
#
#Jul 25 14:14:38 vultr.guest systemd[1]: Starting vsftpd FTP server...
#Jul 25 14:14:38 vultr.guest systemd[1]: Started vsftpd FTP server.

sudo useradd -m ftpskyhigh
sudo passwd ftpskyhigh
#New password: 
#Retype new password: 
#passwd: password updated successfully

#Connect your server_ip, port 21, username: ftpskyhigh, password: YourPassword