ssh acount for my user

hy.
i created a user named david and now he wants me to give him ssh access.
How do i do that? i can not find it in options. help please.

You can currently do this via the command line. Login to the server as root, and run the following commands:

usermod -s /bin/bash david
passwd david

The first line sets the shell for the david user to bash so they can login, and the second line allows you to set the initial ssh login password for this user.

Paul

tnx, it worked ok