Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse secure storage

Is it possible to disable completely the secure storage password of Eclipse? I am running Eclipse Helios on Windows 7.

like image 472
yannisf Avatar asked Nov 19 '10 07:11

yannisf


People also ask

What is Eclipse secure storage?

According to office eclipse documentation. The secure storage saves data in an encrypted form. On some operating systems, it uses your operating system account information to provide a single sign-on experience.

How to Delete secure store in Eclipse?

You can now just delete it, assuming you don't need it for anything. Go to Window > Preferences > General > Security > Secure Storage and then click on the 'Contents' tab. If you click the Delete button and then restart Eclipse, you will no longer see the pop-up.

How do I change my storage location in Eclipse?

If you would like to modify the location of the default secure storage, you can use the "-eclipse. keyring <file_path>" runtime option. The <file_path> is a path to the file which is used to persist the secure storage data. General > Security > Secure Storage preferences page.


3 Answers

  1. Windows->preferences->then type "secure storage"
  2. In the Contents tab, select [Default Secure Storage].
  3. Click Delete.
  4. Let Eclipse restart.
like image 164
User1 Avatar answered Oct 16 '22 11:10

User1


To disable the master password prompt you have to specifiy a file containing the password with -eclipse.password, see Eclipse SDK Help and Bug 241223.

The complete procedure is as follows (this is on Linux, on Windows it should work as well if you change the paths):

  1. Exit Eclipse
  2. Delete the directory ~/.eclipse/org.eclipse.equinox.security
  3. Create a text file containing your master password, e.g. echo "secret" > ~/.eclipse/master
  4. Add to the very top of eclipse.ini, found in the Eclipse program directory (as two lines, don't combine into one)

    -eclipse.password
    /home/user/.eclipse/master
    
  5. Start Eclipse again.
like image 24
exo_cw Avatar answered Oct 16 '22 12:10

exo_cw


Here's my solution in Nano.2 on Windows, and it's nice and easy and seems to be working:

  • Window -> Preferences -> General -> Security -> Security Storage
  • Password tab: in the Master password providers section, uncheck Windows Integration and UI Prompt

I also tried deleting the [Default Secure Storage] in the Contents tab like some other answers suggested, but this is not needed and it gets recreated upon restart anyways.

like image 4
Andrew Avatar answered Oct 16 '22 12:10

Andrew