Create a trace file
When running into an issue creating a trace file will help us to diagnose it.
- Set the custom server setting
TRACE
toX
. - (Set the custom server setting
TRACE_FILE
toC:\OPENBI\OpenBiTrace.txt
for example.) - Restart the open bi server. (Only required if
TRACE
wasn't already set toX
.) - Redo your actions that led to the error.
- Set the custom server setting
TRACE
toINFO
orERROR
or - Restart the open bi server.
Provide us the OpenBiTrace.txt
file.
See also:
Service does not start
This can happend for example when the license is expired. To see the error there are two options:
- Start the open bi server by running the
OPENBI\ibssolution.bioxRepository.exe
as administrator. Errors are shown in red. - Check the Windows Event Viewer for any errors in the
Application
section withSource
=OpenBIServer
.
Reset admin password
To reset the admin password make sure the open bi server is stopped, open a CMD or PowerShell as administrator and run:
$ OPENBI\ibssolution.bioxRepository.exe –-RESET_ADMIN=X
Check if the default admin login works again, close the CMD or PowerShell and start the open bi server as before.
See also:
Backup database
To backup the database while the server is running you need to run SQL queries for the user that started the open bi server.
When running as a service this will be the Local System
user by default. So you need the PSTools to start a powershell session for the Local System
user like this:
$ psexec -i -s powershell.exe
Then install the SqlServer
powershell module
$ Install-Module -Name SqlServer
$ Invoke-Sqlcmd -Query "BACKUP DATABASE [C:\OPENBI\Database\database.mdf] TO DISK = 'C:\database.bak' WITH FORMAT;" -ServerInstance "(LocalDb)\MSSQLLocalDB" -Database "C:\OPENBI\Database\database.mdf"