k.honsali
k.honsali

Reputation: 726

Configure site exceptions list in Java 7 on a Linux machine

Site Exception List is a new security feature since sun Java 7. It can be configured on Windows through the control panel. How do I configure it on a Linux distribution?

Upvotes: 5

Views: 12616

Answers (2)

NicoKowe
NicoKowe

Reputation: 3417

Just run this:

echo 'https://asafesite.com
https://another.url
https://and.anotherone.com' > ~/.java/deployment/security/exception.sites

Upvotes: 6

Rahul Tripathi
Rahul Tripathi

Reputation: 172438

You can check Adding a site to the Exception Site List and follow the steps provided there to configure Exception List on Linux.

Linux/Solaris - Run the jcontrol command.

  • Choose the Security tab.
  • Click the "Manage Site List" button near the bottom.
  • A new window will open.

enter image description here

  • Click the Add button.

enter image description here

  • Click OK. The window will close. You may see an additional prompt if you use an unencrypted protocol such as http or file. Choosing encrypted protocols defends against potential man-in-the-middle attacks.
  • Back on the control panel, click OK to close it.
  • Reload the web page on your browser to launch the RIA.

Upvotes: 4

Related Questions