How can I open multiple Eclipse workspaces at the same time on the Mac?

On other platforms, I can just launch extra Eclipse instances, but the Mac will not let me open the same application twice. Is there a better way than keeping two copies of Eclipse?

link|improve this question

55% accept rate
feedback

9 Answers

up vote 32 down vote accepted

It's pretty simple.

At the command line, navigate to your Eclipse installation. For example:

cd /Applications/eclipse/

or wherever you installed Eclipse to.

Once there, launch Eclipse as follows:

./eclipse &

This will launch eclipse and immediately background the process.

Rinse and repeat to open as many unique instances of Eclipse as you want. I'm not sure if there is a way to do this from the GUI, but I'm comfortable at the command line so it's a no-brainer for me.

Hope that helps!

link|improve this answer
I tried this and it did not work? – Milhous Dec 22 '08 at 15:01
this works on *nixes. – Seiti Dec 22 '08 at 16:55
true, but the OP mentions Mac. – Milhous Dec 23 '08 at 2:34
3  
The answer is missing some parts of the path. For example, mine is: /Developer/Eclipse/Eclipse.app/Contents/MacOS/eclipse & – Lara Dougan Sep 7 '09 at 18:27
Adam, your suggestion worked. Thanks! – Chandra Mohan Mar 1 '11 at 6:33
show 1 more comment
feedback

I tried the answer from stopsineman, but to no avail.

cd /Applications/eclipse/

open -n Eclipse.app

This seems to be the supported native method in os X.

link|improve this answer
It worked for me too... Working completely fine. Thanks A lot – agrawalankur Apr 12 '11 at 20:56
feedback

Actually a much better (GUI) solution is to copy the Eclipse.app to e.g. Eclipse2.app and you'll have two Eclipse icons in Dock as well as Eclipse2 in Spotlight. Repeat as necessary.

link|improve this answer
This is what I actually ended up doing. In fact, since I rarely upgrade Eclipse during ongoing projects, but start new projects with the latest Eclipse, I now have three different versions of Eclipse, all in the dock. – Thilo Feb 20 at 0:24
feedback

If the question is how to easily use Eclipse with multiple different workspaces, then you have to use a kludge because shortcuts in OS X do not provide a mechanism for passing command line arguments, for example the "--data" argument that Eclipse takes to specify the workspace. While there may be different reasons to create a duplicate copy of your Eclipse install, doing it for this purpose is, IMNSHO, lame (now you have to maintain multiple eclipse configurations, plugins, etc?).

In any case, here is a workaround. Create the following script in the (single) Eclipse directory (the directory that contains Eclipse.app), and give it a ".command" suffix (e.g. eclipse-workspace2.command) so that you can create an alias from it:

#!/bin/sh
# open, as suggested by Milhous
open -n $(dirname $0)/Eclipse.app --args -data /path/to/your/other/workspace

Now create an alias to that file on your desktop or wherever you want it. You will probably have to repeat this process for each different workspace, but at least it will use the same Eclipse installation.

link|improve this answer
+1 for the workaround solution, and I want to put in an argument for having multiple workspaces with different settings. As a contractor, you often have to adopt the client's styles and preferences. By creating a new workspace you can easily partition your work among several clients. Also, you may have to support an old account while working on a new account. With this scheme you can keep both open at the same time. I currently keep switching between workspaces, but I like this convenience of opening both (all) at once as needed. – mobibob Apr 2 '11 at 20:34
feedback

I found this solution a while back, can't remember where but it still seems to work well for me.

Create a copy of Eclipse.app for each workspace you want to work in (for this example ProjectB.app), then open ProjectB.app/Contents/MacOS/eclipse.ini and add these two lines at the beginning of the file:

-data
/Users/eric/Workspaces/projectb

... substituting where your workspace is located. When you launch ProjectB.app it will automatically start with that workspace instead of prompting for a location, and you should be able to run it at the same time as other Eclipse instances with no problem.

link|improve this answer
feedback

Instead of copying Eclipse.app around, create an automator that runs the shell script above.

Run automator, create Application.

choose Utilities->Run shell script, and add in the above script (need full path to eclipse)

Then you can drag this to your Dock as a normal app.

Repeat for other workspaces.

You can even simply change the icon - https://discussions.apple.com/message/699288?messageID=699288򪮘

link|improve this answer
feedback

If you're like me, you probably have terminal running most of the time as well. You could just create an alias in /Users//.bash_profile like this alias eclipse='open -n path_to_eclipse.app'

then all you have to do is just open the terminal and type eclipse.

link|improve this answer
feedback

A more convenient way:

  1. Create an executable script as mentioned above:

    #!/bin/sh

    cd /Applications/Adobe\ Flash\ Builder\ 4.6

    open -n Adobe\ Flash\ Builder\ 4.6.app

  2. In you current instance of Flashbuilder or Eclipse, add a new external tool configuration. This is the button next to the debug/run/profile buttons on your toolbar. In that dialog, click on "Program" and add a new one. Give it the name you want and in the "Location" field, put the path to the script from step 1:

    /Users/username/bin/flashbuilder

  3. You can stop at step 2, but I prefer adding a custom icon to the toolbar. I use a the Quick Launch plugin to do that:

    http://sourceforge.net/projects/quicklaunch/files/

  4. After adding the plugin, go to "Run"->"Organize Quick Lauches" and add the external tool config from step 2. Then you can configure the icon for it.

  5. After you save that, you'll see the icon in your toolbar. Now you can just click it every time you want a new Flashbuilder/Eclipse instance.

link|improve this answer
feedback

Window -> New Window

This opens a new window and you can then open another project in it. You can use this as a workaround hopefully.

It actually allows you to work in same workspace.

link|improve this answer
No, I need multiple workspaces. – Thilo Mar 14 '11 at 0:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.