Using a terminal session: Difference between revisions

From Joomla! Documentation

No edit summary
Chris Davenport (talk | contribs)
No edit summary
Line 1: Line 1:
==Uploading and Extracting Joomla for those with CPanel==
{{stub}}
Using your browser go to the CPanel of your site.  
==Using SSH==
*Click on "File Manager"
SSH, which stands for "Secure SHell", is a means of obtaining a secure command-line interface on a remote server host.
*Click on the folder icon next to public_html - this directory is the "root" of your site.
 
*If you want the site in a sub-directory
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:
**Click on "Create New Folder"
<source lang="bash">ssh -l goliath www.mydomain.com</source>
**Give the folder its name
 
**Click on the folder icon next to the folder you just created
On Microsoft Windows you can use the PuTTY terminal emulator.
*Click on "Upload Files"
*Navigate to the .gz install file you had downloaded to your computer
*Upload the file
*Click on the uploaded file in File Manager
*Click on the "Extract File Contents" option on the right
*You now have all the files on your system to continue with the install/upgrade process

Revision as of 00:36, 5 March 2008


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.