Connect to remote host from Aptana Studio 3 terminal
Asked Answered
B

3

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

Bubo answered 31/3, 2011 at 13:3 Comment(0)
C
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.

Clementclementas answered 20/4, 2011 at 17:3 Comment(1)
If you want to use a private key: $ ssh -l <username> -i </path/to/key> 192.168.0.100Confidante
A
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!

Axis answered 13/4, 2012 at 16:43 Comment(0)
W
0

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

Wiles answered 4/5, 2012 at 9:11 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.