Is it possible to disable completely the secure storage password of Eclipse? I am running Eclipse Helios on Windows 7.
7 Answers
- Windows->preferences->then type "secure storage"
- In the Contents tab, select [Default Secure Storage].
- Click Delete.
- Let Eclipse restart.

- 39,458
- 69
- 187
- 265
-
13A much easier and omho the correct way to delete this. @exo_cw is correct but your solution is better. Thanks a lot! – rbaleksandar Dec 09 '12 at 15:45
-
Agreed. BUT, I just had a situation where on load, Eclipse asked the master password but something was blocking me from input, or closing any windows, or going to preferences. I killed Eclipse, and deleted the directory (@exo_cw steps 1 & 2) and then could get in to delete [Default Secure Storage] – eugenevd Jun 13 '13 at 11:48
-
@User1, your solution worked. Thanks a lot. This secure storage feature was irritating me every time I started Eclipse. Wondering why Eclipse developers added this feature. – Shekhar Feb 06 '14 at 05:19
-
this fixed things for me. yay. – Leo Ufimtsev Oct 29 '14 at 19:51
-
2while this does work, then I can't store any passwords. If you want to store passwords but without having to type the master password every time one of your passwords is used, then the top solution is better. – Daniel_H Oct 26 '15 at 11:23
-
when I follow this steps in eclipse neon and restart it, the first thing that pops up is a dialog that asks me to provide a new passwd. I can cancel that dialog, but it appears again whenever I had to provide the passwd also before. Unfortunately not really a solution – 463035818_is_not_an_ai Oct 18 '17 at 16:07
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):
- Exit Eclipse
- Delete the directory ~/.eclipse/org.eclipse.equinox.security
- Create a text file containing your master password, e.g.
echo "secret" > ~/.eclipse/master
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
- Start Eclipse again.

- 3,219
- 3
- 32
- 25

- 1,710
- 1
- 14
- 11
-
1Even it does not disable the feature it is a good workaround (but less secure) to prevent that silly prompt all the time. – рüффп Feb 20 '12 at 09:24
-
Also, beware of any spaces *after* `-eclipse.password`. It seems to ignore the parameter if there are any spaces after it. – Rodrigo Coacci Sep 04 '13 at 17:11
-
the only problem with this solution is that in my Ubuntu it always reads /usr/lib/eclipse/eclipse.ini (I tried to add ~/eclipse.ini, ~/.eclipse/eclipse.ini, ~/.eclipse.ini) so I would rather not add my password there... – Gavriel Feb 20 '14 at 13:55
-
@Gavriel, you can just run it like `eclipse -eclipse.password /home/user/.eclipse/master` (e.g. modify the desktop entry) without modifying eclipse.ini. – FlasH from Ru Jan 14 '15 at 22:01
-
@FlasHfromRu, probably, but that was a year ago, now I use AndroidStudio and IDEA instead ;) – Gavriel Jan 14 '15 at 22:15
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.

- 5,839
- 1
- 51
- 72
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.
From what I understand, Secure Storage is mostly used with repositories like Git and SVN. In my case, I don't need it for my home computer. I use Git at work, but even so, I have never seen the Secure Storage pop up before.

- 5,874
- 1
- 47
- 40
While opening the Eclipse or importing the project, you might get sometimes error called Salt must be 8 bytes long. This is because of conflicts between Java and OS key store.
Either of following are the solutions of this problem.
► Solution 1: Remove file <USERHOME>.eclipse\org.eclipse.equinox.security\secure_ storage from your system. After that please restart machine and try to use Eclipse***.
► Solution 2: Uncheck the Windows Integration (64 bit) and UI Prompt from Password tab of Windows -> Preferences -> General -> Security -> Secure Storage. After that please restart machine and try to use Eclipse.
► Solution 3: Delete [Default Secure Storage] from Contents tab of Windows -> Preferences -> General -> Security -> Secure Storage. After that please restart machine and try to use Eclipse.

- 227
- 4
- 9
In windows 7 enerprise 64 bits + java 8 In eclipse go to :
Preferences
--> General
-> security
-> secure Storage.
In master Password providers UNCKECK Windows integration (64 bits)
Then go to General -- network connections -- proxy And edit your proxy settings. A wizard appear to create Secure Storage

- 11
- 1
On Ubuntu 11.10 with Eclipse Indigo installed the folder org.eclipse.equinox.security is hidden in the /root/.eclipse folder. Do a
sudo su
cd /root/.eclipse
mv org.eclipse.equinox.security org.eclipse.equinox.security.backup
Then (re)start eclipse and the password will be gone.

- 1,794
- 2
- 26
- 60
-
1
-
-
I'm not suggesting it. I only said in my installation it was there. I added the information because I could not find the folder mentioned in the answer above. – steros Jul 06 '12 at 14:51