Almas Adilbek
Almas Adilbek

Reputation: 4410

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

Upvotes: 9

Views: 11444

Answers (3)

user1103483
user1103483

Reputation: 21

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

Upvotes: 0

Jason K.
Jason K.

Reputation: 113

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!

Upvotes: 2

Dennis F. O&#39;Connor
Dennis F. O&#39;Connor

Reputation: 571

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.

Upvotes: 13

Related Questions