Learn about Centmin Mod LEMP Stack today
Register Now

Ignore create ftp user and pass after create vhost

Discussion in 'Other Centmin Mod Installed software' started by Tarek Elgebaly, Oct 22, 2018.

Tags:
  1. Tarek Elgebaly

    Tarek Elgebaly New Member

    11
    1
    3
    Oct 22, 2018
    Ratings:
    +1
    Local Time:
    10:19 AM
    Hi All
    I create Master ftp account to log to all domains that I created
    every time I create vhost, they ask me to create ftp user name and password, so how I create vhost without create ftp user and pass

    I try to stop ftp by this 2 commands


    service pure-ftpd stop
    chkconfig pure-ftpd off

    after I do this I created a new vhost but ask me again to create ftp username and pass for this vhost
     
  2. Tarek Elgebaly

    Tarek Elgebaly New Member

    11
    1
    3
    Oct 22, 2018
    Ratings:
    +1
    Local Time:
    10:19 AM
  3. eva2000

    eva2000 Administrator Staff Member

    58,894
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    6:19 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    from How To Disable Pure-FTPD?

    i made a typo instructions should be set PUREFTPD_DISABLED=y so

     
  4. Tarek Elgebaly

    Tarek Elgebaly New Member

    11
    1
    3
    Oct 22, 2018
    Ratings:
    +1
    Local Time:
    10:19 AM
    I dont know how I do that, can you explain more please
     
  5. eva2000

    eva2000 Administrator Staff Member

    58,894
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    6:19 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    create /etc/centminmod/custom_config.inc persistent config if it doesn't exist
    Code (Text):
    touch /etc/centminmod/custom_config.inc
    

    Then using vim/nano linux text editor add to /etc/centminmod/custom_config.inc the variable
    Code (Text):
    PUREFTPD_DISABLED=y
    

    or via
    Code (Text):
    touch /etc/centminmod/custom_config.inc
    echo "PUREFTPD_DISABLED=y" >> /etc/centminmod/custom_config.inc
    
     
  6. Tarek Elgebaly

    Tarek Elgebaly New Member

    11
    1
    3
    Oct 22, 2018
    Ratings:
    +1
    Local Time:
    10:19 AM
    thanks a lot , work fine now
     
  7. eva2000

    eva2000 Administrator Staff Member

    58,894
    12,490
    113
    May 24, 2014
    Brisbane, Australia
    Ratings:
    +19,122
    Local Time:
    6:19 PM
    Nginx 1.31.x
    MariaDB 10.x/11.4+/12.3+
    Glad to hear :)