Please enter search query.
Search <product_name> all support & community content...
Article: 100043723
Last Published: 2019-09-20
Ratings: 0 0
Product(s): NetBackup & Alta Data Protection
Description
How to reset a password if e-mail is not yet configured. NetBackup Self Service (NSS).
- Click the 'Forgotten Password' hyperlink on the Self Service log in page. This will generate a new password which will be written to a table (dbo.emails) in the NSS database.
- Launch the SQL Server Studio Manager on the SQL host where the NSS databases reside.
- Click on 'File -> New -> Query with Current Connection'.
- In the right hand pane, paste in the following query, where 'your_database_name' is the actual name of your NSS database.
select top 1 right(Body , 56)
FROM [<your_database_name>].[dbo].[EMAILS]
Where Body like '%new password%' or Subject like '%new password%'
order by EmailID desc
So, for example, if your database name is "NetBackupSelfService", the query would be:
select top 1 right(Body , 56)
FROM [NetBackupSelfService].[dbo].[EMAILS]
Where Body like '%new password%' or Subject like '%new password%'
order by EmailID desc
- Click on 'Query -> Execute'.
- That query should return something like:
</p><p>BGUOTrmgx6</p></span></p></body></html>
- The new password is returned between the <p> and </p> brackets. In the above example, the new password is:
BGUOTrmgx6
- Return to the Self Service log in page and enter the new password obtained via step 6.