如何使用 SSH 创建来宾 ftp 用户?
我刚刚在 GoDaddy 获得了一台虚拟专用服务器。我得到了简单的控制面板。似乎没有办法通过这个控制面板创建来宾 ftp 用户,我被告知必须通过 SSH 创建。我有一个名为 Putty 的程序,它可以通过 SSH 登录服务器。我熟悉登录,但有谁知道用于创建来宾 ftp 用户并授予他们对特定文件夹的读写访问权限的命令是什么?
请帮忙。
我在谷歌搜索时发现了以下步骤。但是当我使用 USERADD 命令时,PUTTY 抛出错误。
要通过 SSH 创建 FTP 用户,您 需要遵循下面提到的 步骤:
<前><代码>1。通过 SSH 以 root 身份登录。 2. 接下来使用“useradd”命令添加所需的用户帐户 useradd <用户名>; 3. 现在为该用户创建一个特殊组。 groupadd <组名>; 4. 现在将用户添加到组中 gpasswd -a <用户名>; <群组名称> 这些命令是非标准的,但是 可在最受欢迎的 分布。如果没有,那么你可以 尝试使用您的编辑/etc/group 最喜欢的文本编辑器。 5. 将特殊目录的组所有权更改为该组。 chgrp -R 组名 /path/to/your/web/目录 6.启用写权限 chmod -R g+rw /path/to/your/web/目录
I just got a virtual dedicated server at GoDaddy. I got the Simple Control Panel. There doesn't seem to be a way to create a guest ftp user through this control panel and I was told it must be created through SSH. I have a program called Putty which can log into the server via SSH. I'm familiar with logging in but does anyone know what the commands are to be used to create a guest ftp user and give them Read and Write access to a particular folder?
Please help.
I found the following steps when i was googling. But the PUTTY is throwing an error when i used USERADD command.
To create FTP user through SSH you
would need to follow below mentioned
steps: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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论