LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Enabling SSHd on redhat 9 (https://www.linuxquestions.org/questions/linux-software-2/enabling-sshd-on-redhat-9-a-153644/)

jon_k 03-04-2004 08:52 PM

Enabling SSHd on redhat 9
 
Hello, been a while since i've used linux, and when I attempt to go System Settings>Server Settings>services

I look through there real good and hard and don't see 'SSHD'

What happened?

How do i turn ssh on?

ashamril 03-04-2004 09:22 PM

on root prompt

# service sshd start

to start on boot

# chkconfig sshd on

jon_k 03-05-2004 10:03 AM

Having problems, I typed

'service sshd start' in root returns cmd not found

same if i just type service

chkconfig is an invalid command as well.

What do I need to do to install these commands into my system?

Mathieu 03-05-2004 11:02 AM

Quote:

'service sshd start' in root returns cmd not found
How did you go about switching to the ROOT user ?

In order for these commands to work, you must be root.
To become root, at the command line, type:
Code:

su -
To find out the location of a command, type:
Code:

whereis command
To see if SSHd is installed on your system, as root, type:
Code:

rpm -qa | grep ssh


All times are GMT -5. The time now is 07:08 PM.