Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Connect to remote host from Aptana Studio 3 terminal

How to connect to remote host from Aptana Studio 3 terminal view, and use commands on that server?

I'm using symfony framework, the project is in my host 192.168.0.100, so I want to run symfony commands like: $ symfony propel:build-schema

like image 503
Almas Adilbek Avatar asked Mar 31 '11 13:03

Almas Adilbek


Video Answer


2 Answers

To connect to a remote host run the following command in your console:

$ ssh -l <username> 192.168.0.100

Enter your password and you're golden. Unfortunately you have to do this every time you open Aptana, but it's better than nothing.

like image 173
Dennis F. O'Connor Avatar answered Sep 19 '22 10:09

Dennis F. O'Connor


Another alternative if you need to specify a port number(or dont need to).

ssh <username>@<server> -p <portnumber>

i know its a old question but hope it helps someone.

first post as well!

like image 45
Jason K. Avatar answered Sep 20 '22 10:09

Jason K.