• Introduction
  • Support
  • Glossary
  • License
  • Acknowledgement
  • Git Version Control
    • Git Basics
    • Git and Atom: GitLab
    • Git and Atom: GitHub
    • Git in the Command Line
    • Git Scenarios
  • Learning Linux
    • Learning Linux Commands
    • Essential Commands
      • Script: Backup
      • Script: Seconds
    • Managing Files
      • Script: Create Files
    • File Permissions
    • Working with Processes
    • Services
    • System Configuration
    • Environment Customization
    • Communication Protocols
    • Task Manager (crontab, at)
    • Bash Scripting
    • Command Line Shortcuts
  • Using the HPC
    • Overview
      • Hardware
      • Storage
      • Software
    • Prerequisites
    • Request an Allocation
    • Access your Allocation
    • Execute a Job
      • Working with C++
      • Working with Fortran
      • Working with Python
      • Working with Makefiles
      • More Job Details
    • Managing Jobs
    • Modules
      • CVMFS Modules
    • Compilers
    • Workflows
      • Crystal Workflow
  • Xsede Resources
    • IU/TACC Atmosphere on Jetstream
    • Using Jetstream Virtual Machines
  • Data Transfer and Storage
    • Moving Data
      • Graphical Client SFTP
    • Globus Data Transfer Tool
      • Globus Endpoints
      • Globus Transfers & More
      • Globus Command Line Interface
  • Tools
    • Docker Containers
    • Singularity Containers
Powered by GitBook
On this page
  1. Learning Linux

Services

Before checking the status of the SSH service, make sure you have the SSHD service enabled.

  • Turning ON the SSHD service at boot time

    systemctl enable sshd.service

    To turn it off at boot time, please enter systemctl disable sshd.service.

  • Check if a service is enabled or disabled

    systemctl status sshd.service

    It will display a message of active or inactive service.

  • Reload SSHD configuration changes

    systemctl start sshd.service
    systemctl restart sshd.service
    systemctl stop sshd.service
    systemctl reload sshd.service

    The start option will initiate the SSHD service, stop will stop it, and finally, restart or reload will refresh the new configurations.

PreviousWorking with ProcessesNextSystem Configuration

Last updated 6 years ago