(imported topic written by bstayskal91)
I need to uninstall, and then re-install Web Reports due to a lost username/password. This is what IBM Support told me. But I cannot find a way to uninstall just Web Reports.
Is there an easy way to do this?
(imported topic written by bstayskal91)
I need to uninstall, and then re-install Web Reports due to a lost username/password. This is what IBM Support told me. But I cannot find a way to uninstall just Web Reports.
Is there an easy way to do this?
(imported comment written by bstayskal91)
I found the answer for the lost username and password, that does not require uninstalling Web Reports:
http://support.bigfix.com/cgi-bin/kbdirect.pl?id=122
If you have lost or forgotten certain passwords and need to reset them:
• Site credentials password – If you lose the site credential files or password, you will need to generate another set of site credentials and do a complete reinstall of the BigFix system.
• BigFix Console operator password – If you lose the publisher credential files or password, you will need to create a replacement set of publisher credentials using the BES Admin Tool.
• BigFix Web Reports login – If you lose your web reports login and cannot get access to web reports, you can follow one of these two methods:
• These steps will clear all the Web Reports logins, and then create a new web reports administrator account to recover access:
Open a command prompt on the BES Server computer that is running the web reports (you need to be logged in as an administrator on the computer).
Type ‘osql -E’ at the command line to log into the database.
Type ‘use BESReporting’ at the ‘1>’ prompt to access the Web Reports database.
Type ‘go’ to execute the previous action.
Type ‘select * from USERS’ to see the users in the database (the password is stored as a one-way hash of the password you type into to BES).
Type ‘go’ to execute the previous action.
Type ‘delete from USERS’ to clear the USER table.
Type ‘go’ to execute the previous action (note that this will clear all of the web reports users).
Open the web reports web page again to recreate a username/password.
• You can also run the query below to insert an administrator web reports user into the database. The user/password will be “bigfix/bigfix”.
insert into users values (‘bigfix’, ‘gwCOEwCUD1ntCnCBwRDV+VzdvvM’, 1, 1, NULL)
To create a backdoor account in 8.0 and up:
begin
declare @id uniqueidentifier
select @id = NEWID()
insert into USERS ( UserID, LoginName, PasswordHash, PasswordSalt ) values ( @id, ‘bigfix’, ‘gwCOEwCUD1ntCnCBwRDV+VzdvvM’, ‘1’ )
insert into USER_NAMES ( UserID, LoginName, DisplayName, IsADUser ) values ( @id, ‘bigfix’, ‘bigfix’, 0 )
insert into ROLE_USER_ASSIGNMENTS ( UserID, RoleID ) values ( @id, 1 )
end