GoDaddyで仮想専用サーバーを入手しました。シンプルなコントロールパネルを手に入れました。このコントロールパネルからゲストftpユーザーを作成する方法はないようで、SSHを介して作成する必要があると言われました。SSH経由でサーバーにログインできるPuttyというプログラムがあります。私はログインに精通していますが、ゲスト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