Difference between revisions of "Tutorials and How-tos/Access Server via SSH"

From BubbaWiki
Jump to navigation Jump to search
Line 13: Line 13:
   ssh dmpop@192.168.10.1
   ssh dmpop@192.168.10.1


Once you've logged in, you have full access to the system with user privileges. To get root access to the system use the <code>su</code> command and enter the root password when prompted (the default root password is <code>excito</code>).
Once you've logged in, you have full access to the system with user privileges. To get root access to the system use the <code>su</code> command and enter the root password when prompted (the default root password is <code>excito</code>).
 
== Examples  ==
 
Here are some basic examples.
 
To edit the Debian sources file, type:
 
nano /etc/apt/sources.list
 
To view the mail error messages, type:
 
cat /var/log/mail.err
 
<br>
 
<br>
 
== WinSCP  ==
 
For windows users that are a bit uncomfortable with navigating in the SSH console and dealing with the various Linux commands the WinSCP application is a killer.
 
[http://winscp.net/ http://winscp.net/]
 
It provides intuitive tree-navigation and comes with internal text editor.

Revision as of 12:40, 4 September 2010

As with any Linux-based server, you can manage Bubba by establishing an SSH connection to it from another machine (e.g., your netbook or desktop computer). Bubba comes with an SSH server installed and enabled by default, so the only thing you need to do is to enable an SSH connection for a specific user account. To do this, switch to the Administration interface, navigate to the Users section, and press the Edit button next to the desired user. Tick the Shell login check box, and press Update button.

Next, you need to install an SSH client on your machine. If you're running Windows, you might want to give PuTTY or [KiTTY] a try. Linux users don't have to install anything -- you can establish an SSH connection from the terminal.

To establish an SSH connection to Bubba using PyTTY, launch it and enter the IP address of your Bubba server in the Host Name field. Select the SSH option in the Connection type section and press Open. Enter then your user name and password.

On Linux, launch terminal and use the following command to establish an SSH connection to the server (replace USER with your actual user name and IPADDRESS with the IP address of the Bubba server):

 ssh USER@IPADDRESS

For example:

 ssh dmpop@192.168.10.1

Once you've logged in, you have full access to the system with user privileges. To get root access to the system use the su command and enter the root password when prompted (the default root password is excito).