Find the answer to your Linux question:
Results 1 to 2 of 2
I want to setup a ssh server. Is there any program which do this work so that to dont set manual the file .config of ssh?...
  1. #1
    Just Joined!
    Join Date
    Jun 2010
    Posts
    24

    ssh server

    I want to setup a ssh server.
    Is there any program which do this work so that to dont set manual the file .config of ssh?

  2. #2
    Linux Guru
    Join Date
    May 2011
    Posts
    1,843
    It is likely already "set up". You just have to start it:

    Code:
    service sshd start
    In the unlikely event that the package is not installed, do:
    Code:
    yum install openssh-server
    Once it is started, test it by trying to log in locally:

    Code:
    ssh <USER>@localhost
    The daemon config file is:

    Code:
    /etc/sshd/sshd_config
    Read the man page:

    Code:
    man 5 sshd_config

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...