9

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

j0k
  • 22,600
  • 28
  • 79
  • 90
Almas Adilbek
  • 4,371
  • 10
  • 58
  • 97

3 Answers3

13

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.

2

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!

Jason K.
  • 113
  • 9
0

You can install Target Management (http://www.eclipse.org/tm/) to create a remote project in aptana.