ftpd Mac OS X Lion (10.7) setup

5,955

As you noted, Lion doesn't have a checkbox to turn the FTP server on anymore.

However, the back-end (ftpd itself) is still there, and you can still enable it manually from the command line by telling launchd to enable and load the existing launchd entry for it or simply running ftpd manually (cf. this thread on MacRumors). Consult the launchd, launchctl, launchd.plist, and ftpd man pages for details, but the basic command to start the ftpd server on the default port is:

sudo launchctl load -w /System/Library/LaunchDaemons/ftp.plist

As was suggested on the MacRumors thread, you may want to take this opportunity to migrate to SFTP or another more secure, better-supported protocol.

Share:
5,955

Related videos on Youtube

Chris Muench
Author by

Chris Muench

Updated on September 18, 2022

Comments

  • Chris Muench
    Chris Muench over 1 year

    How can I set up ftpd to run when my computer restarts and how can I turn it on for port 5021? Mac OS X 10.7 Lion doesn't have a checkbox to turn the ftp server on anymore.

    • Chris Muench
      Chris Muench almost 13 years
      Unfortunately I need to use ftp for cpanel backup, that is the only protocol they support.
    • voretaq7
      voretaq7 almost 13 years
      @Chris - Cpanel support SCP (which is enabled along with SFTP and SSH when you turn on the "Remote Login" service in OSX). This is an infinitely better choice than plain unencrypted FTP, especially if the data you're backing up is sensitive (I believe cpanel backs up passwords)....
    • Chris Muench
      Chris Muench almost 13 years
      The cpanel remote backup only supports ftp though.
  • TJ Luoma
    TJ Luoma over 12 years
    +1 for answering the question. I shuffle files across my home LAN and don't need SFTP for that. Anything going across the Internet obviously uses SFTP.