cancel
Showing results for 
Search instead for 
Did you mean: 

Securing DLO Edge Server

Ianlennon
Level 1

Is it possible to control who on a domain has access to log into the portal of the edge server component of DLO, at the moment it seems that even if you do not have any DLO backups it is still possible for a user to log onto the edge server portal and I would like to restrict this to only users with backups. Also is it possible ti disable the edge server portal entierly while still leaving functionality for the client?

Thanks for any help in advance I am currently evaulating the software before purchase and have not been able to find any answers to these questions elsewhere.

1 ACCEPTED SOLUTION

Accepted Solutions

sdickens
Moderator
Moderator

Hello,

Anyone in the Domain can login to the Web Server as it is designed for users to be able to download and install the agent remotely.

We also cannot completely disable the Web Server but you can disble the ability to login to it altogether.

Please find below the steps required to display a custom message on the web restore page thereby not displaying the actual web restore page.

1. Go to path “C:\Program Files\Veritas\Veritas DLO\IOServer\Tomcat\webapps\DLOServer\restore”.

2. Take a backup of the login.jsp.

3. Edit “login.jsp” page and delete the entire content and we can add our own custom html code as given below.

Example “login.jsp” with custom code (attached example ‘login.jsp’ which has below content).

<!DOCTYPE html>
<html>
<body>
<h1>This page is disabled</h1>
<p>Please DON'T ACCESS this page again.</p>
</body>
</html>

You can add the customized message in the <h1> and <p> tag which will be displayed in the login page.

4. Save the changes made in login.jsp, close the file and restart “Veritas web service”

5. Access the Web restore page URL and you will see the customized message on the login page.

 

View solution in original post

1 REPLY 1

sdickens
Moderator
Moderator

Hello,

Anyone in the Domain can login to the Web Server as it is designed for users to be able to download and install the agent remotely.

We also cannot completely disable the Web Server but you can disble the ability to login to it altogether.

Please find below the steps required to display a custom message on the web restore page thereby not displaying the actual web restore page.

1. Go to path “C:\Program Files\Veritas\Veritas DLO\IOServer\Tomcat\webapps\DLOServer\restore”.

2. Take a backup of the login.jsp.

3. Edit “login.jsp” page and delete the entire content and we can add our own custom html code as given below.

Example “login.jsp” with custom code (attached example ‘login.jsp’ which has below content).

<!DOCTYPE html>
<html>
<body>
<h1>This page is disabled</h1>
<p>Please DON'T ACCESS this page again.</p>
</body>
</html>

You can add the customized message in the <h1> and <p> tag which will be displayed in the login page.

4. Save the changes made in login.jsp, close the file and restart “Veritas web service”

5. Access the Web restore page URL and you will see the customized message on the login page.