Using a terminal session: Difference between revisions
From Joomla! Documentation
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
== | {{stub}} | ||
==Using SSH== | |||
SSH, which stands for "Secure SHell", is a means of obtaining a secure command-line interface on a remote server host. | |||
On Linux you can open a terminal window then enter the command <tt>ssh -l <username> <host></tt> where <username> should be replaced with your actual username and <host> by the domain name or IP address of the host you want to connect to. You will be prompted for the password associated with the username. If this is the first time you have attempted to connect to this host using SSH you will be asked to confirm the fingerprint of the host you are attempting to connect to. To exit an SSH session, type Control-D or "exit". For example, to connect to host www.mydomain.com using username "goliath" you would enter: | |||
<source lang="bash">ssh -l goliath www.mydomain.com</source> | |||
On Microsoft Windows you can use the PuTTY terminal emulator. | |||
Revision as of 00:36, 5 March 2008
| |
This article is a stub and needs to be expanded. If you can provide information or finish this article you're welcome to do so. Please remove this message afterwards or replace with {{inuse}} while making major edits. - Thank you. |
Using SSH
SSH, which stands for "Secure SHell", is a means of obtaining a secure command-line interface on a remote server host.
On Linux you can open a terminal window then enter the command ssh -l <username> <host> where <username> should be replaced with your actual username and <host> by the domain name or IP address of the host you want to connect to. You will be prompted for the password associated with the username. If this is the first time you have attempted to connect to this host using SSH you will be asked to confirm the fingerprint of the host you are attempting to connect to. To exit an SSH session, type Control-D or "exit". For example, to connect to host www.mydomain.com using username "goliath" you would enter:
ssh -l goliath www.mydomain.com
On Microsoft Windows you can use the PuTTY terminal emulator.
