DEV Community

James Sinkala
James Sinkala

Posted on • Updated on • Originally published at jamesinkala.com

Setting up SSH Access to your Web Hosting Service.

This is a simple guide to help you setup ssh access to your web server.

First and foremost, you need to enable ssh access on your web hosting provider's dashboard.
Alt Text

Look for the SSH access setting which will most likely be off.
Alt Text

And turn it on.
Alt Text

Remote Access

What's left is trying to access your remote server from your local machine. You might opt for tools like PuTTY or use your operating system's built in SSH client which the Mac OS and Windows (Windows 10, 2015 onwards) port out of the box.
All you need is open windows command prompt or terminal on Mac and use your server's access credentials as follows.

$ ssh username@server_ip_address
Enter fullscreen mode Exit fullscreen mode

You will be prompted to insert your password and that's it.

Break a shell.

Top comments (0)