Help Me to Add Ftp Server Add on my Detecated Server (Godaddy)

Discussion in 'Site & Server Administration' started by hostimizer, May 4, 2010.

  1. #1
    hi friends

    i need to help to add Ftp Server On My Server
    i buy server from Godaddy and buy ftp backup

    but need add Ftp Server To add on My Server

    Please Tell me the steps
     
    hostimizer, May 4, 2010 IP
  2. aed040

    aed040 Greenhorn

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #2
    Do you have shell access on your server?

    What OS are you using?

    If you are using Centos here are the steps

    login to your server and issue this commands

    Install FTP server
    
    yum install vsftpd
    
    Code (markup):
    Turn on vsftpd ftp service
    
    chkconfig vsftpd on
    
    Code (markup):
    Start vsftpd ftp server
    
    service vsftpd start
    
    Code (markup):
     
    aed040, May 5, 2010 IP
  3. hostimizer

    hostimizer Well-Known Member

    Messages:
    548
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    150
    #3
    i want to add ftp backup server on my website server

    i have 45 GB on my web server and i have 15 GB ftp backup server

    i have CentOS 5 Linux on my server
     
    hostimizer, May 5, 2010 IP
  4. crashus

    crashus Active Member

    Messages:
    90
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    53
    #4
    Do you want to back up data FROM server or TO server?

    If second way is correct then simply use aed040's method
     
    crashus, May 5, 2010 IP
  5. hostimizer

    hostimizer Well-Known Member

    Messages:
    548
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    150
    #5

    i dont want install FTP server i aledy have FTP server

    i want to add Ftp Backup Server On My Server

    i have Server And i buy additional Ftp Backup Server From Godaddy
    now i want to add additional Ftp Backup Serveron my Web Server Cplane / Hwm

    Please Tell me steps

    http://help.godaddy.com/topic/144/article/207

    godaddy tell this steps but i dont understand this please help me in this
     
    hostimizer, May 5, 2010 IP
  6. kmap

    kmap Well-Known Member

    Messages:
    2,215
    Likes Received:
    29
    Best Answers:
    2
    Trophy Points:
    135
    #6
    they offer two types of backup

    1. managed backup you have no control on it
    2. manual backup where they provide space which is accessible only through server


    Regards

    alex
     
    kmap, May 5, 2010 IP
  7. aed040

    aed040 Greenhorn

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    16
    #7
    aed040, May 5, 2010 IP
  8. troupe

    troupe Peon

    Messages:
    35
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    If you are trying to backup from your server to the ftp space they provide you, your server will not require an ftp server. You just need to ftp your backup files to their (already existing) ftp server.
     
    troupe, May 5, 2010 IP
  9. anands

    anands Well-Known Member

    Messages:
    436
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    120
    #9
    are you using any control panels? If you are using one, its simpler, if not its a bit long steps.

    IF you using a control panel. Generate a full backup of your website and move to your ftp server using the following command.
    Login to your shell using putty or any other ssh client.
    After login
    cd /path/to/your/backup
    ftp backup.server.hostname (enter the username and password when prompted)
    put backup_file_name
    quit (to logout from the remote server)

    If you are not using any control panel, you need make a dump of files and database and move the files to the remote server as explained above.

    For backup always prefer using R1CDP or rsync. Ftp is tedious method and not that feature rich as the others i have mentioned.
     
    anands, May 5, 2010 IP