我刚刚在 GoDaddy 获得了一个虚拟专用服务器。我得到了简单的控制面板。似乎没有办法通过此控制面板创建来宾 ftp 用户,我被告知它必须通过 SSH 创建。我有一个名为 Putty 的程序,它可以通过 SSH 登录服务器。我熟悉登录,但有谁知道要使用哪些命令来创建来宾 ftp 用户并授予他们对特定文件夹的读写访问权限?
请帮忙。
我在谷歌搜索时发现了以下步骤。但是当我使用 USERADD 命令时,PUTTY 会引发错误。
要通过 SSH 创建 FTP 用户,您需要遵循以下提到的步骤:
1. Login as root through SSH. 2. Next add the user account you want using the 'useradd' command useradd <username> 3. Now create a special group for that user. groupadd <groupname> 4. Now to add the user to the group gpasswd -a <username> <groupname> These commands are non-standard but available on most popular distributions. If not, then you can try editing /etc/group using your favorite text editor. 5. Change the group ownership of the special directory to that group. chgrp -R groupname /path/to/your/web/directory 6. Enable write permissions chmod -R g+rw /path/to/your/web/directory