Basic Setup SSH Server on Fedora.
Basic Setup SSH Server on Fedora.
Usually the ssh is install by default on the installation of Fedora operating system itself. The article below show the step of the basic setup of ssh server on Fedora Linux operating system.
1. Open X terminal.

Checking SSH server status.
Using the service command to check the current status of the sshd.
[root@tenouk ~]# service sshd status
sshd is stopped
[root@tenouk ~]#
Start SSH server.
Start the sshd process using service command.
[root@tenouk ~]# service sshd start
Starting sshd: [ OK ]
[root@tenouk ~]#
Automatically start SSH server.
Using the chkconfig command to enable and make sure that every time the system restart, the SSH (sshd deamon) start automatically.
1. Check current configuration status of sshd.
[root@tenouk ssh]# chkconfig --list sshd
sshd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@tenouk ssh]#
2. Using the chkconfig to automatically start the SSH on runlevel 3, 4 and runlevel 5.
[root@tenouk ssh]# chkconfig --level 345 sshd on
[root@tenouk ssh]#
3. Verify the change for shhd on runlevel 3, 4 and runlevel 5.
[root@tenouk ssh]# chkconfig --list sshd
sshd 0:off 1:off 2:off 3:on 4:on 5:on 6:off
[root@tenouk ssh]#
basically you have done the basic setup process now you can proceed with the:
Customize the ssh configuration.
Using ssh
Keywords: basic setup ssh, setup fedora ssh server, setup ssh, setup ssh on fedora, ssh fedora, ssh setup, ssh setup example.
- Add new comment
- 36867 reads
- Email this page
Thanks for Reading and Check Other Popular Linux Topics
All time:
- Configure and Setup Squid Cache Proxy Server on Fedora Core.
- Using Linux rm command to delete, remove hidden files and folder - Basic Linux Command.
- Copy Linux Files and Copy Directory Using cp Command - Linux Basic Command.
- Moving or rename files and directory using Linux mv command - Basic Linux Command.
- Add, view, edit and configure route and static route on Linux Fedora Core - Linux Server Configuration.
- Get and display the size of file and directory in Linux system using du command.
- Step by step Install Setup and Configure Linux Fedora Core Server and Network Management with Screen Shot and Example.
- Create file and display file contents in Linux using cat command.
- Configure Squid to block HTTP request to specific web sites.
- Example of samba smbpasswd file and samba smbusers configuration file.

1 comment
great info
Submitted by Nnaemeka Emejulu (not verified) on Fri, 11/11/2011 - 23:12.works like a champ!!