If you get the error SSISDBBackup.bak could not be accessed while creating an Integration Services Catalog, it could be because you do not have Integration Services installed on your SQL Server instance. Below I am going to attempt and create an Integration Services Catalog, by right clicking the item within SSMS and choosing Create Catalog. …
Tag: error
Jan 09 2021
GitHub Desktop Commit failed – exit code 1 received
The error in GitHub Desktop “Commit failed – exit code 1 received” can occur due to a few reasons. Check first if you have added files to your index. Open the command line and check your git status. Second, check if you have nested .git directories. Try searching your repository to see if you have …
Dec 14 2020
Cannot impersonate user for data source ‘CDRDB’. (rsErrorImpersonatingUser)
When deploying the Skype for Business Archiving and Monitoring role, it asks for a user account and password. Many clients don’t have a service account for this (or simply don;t understand they need a service account for this) and just put in the username and password of the Administrator or the person doing the install. …
Sep 15 2020
StatsMan error 1 no aggregation data found in the statsman data cache
After running StatsMan for some time, one day I saw the error “error 1 – no aggregation data found in the statsman data cache“. First of all I checked the state of “Redis” and “Skype for Business StatsMan Listener” services and they were “Running”.
Sep 02 2020
How To Debug Nginx Reverse Proxy Issues
Nginx server is loved by many people for its proxy capabilities and ease of configuration. A simple proxy_pass can allow you to connect to any of the backends such as GoLang, php-fpm, NodeJS, another Nginx, Tomcat, Apache, Gunicorn, uwsgi, Flask, Django, an external CDN and many more. When proxying a request to another server, you …
Sep 02 2020
Nginx close upstream connection after request
Nginx was configured as reverse proxy for an upstream server that servers a website. Upon checking the setup I encountered the 502 Bad gateway error. In Nginx error.log I found the following line:
1 |
*1 upstream prematurely closed connection while reading response header from upstream, client: 127.0.0.1, server: , request: "GET /check HTTP/1.1", upstream: "http://127.0.0.1:4005/check", host: "example.com" |
Jul 29 2020
ORA-09925: Unable To Create Audit Trail File
Upon trying to start Oracle database service I got the following ORA-09925 error in $DB_HOME/startup.log file
1 2 3 4 |
SQL> Connected to an idle instance. SQL> ORA-09925: Unable to create audit trail file Linux-x86_64 Error: 2: No such file or directory Additional information: 9925 |
The same ORA-09925 error when I tried to log on to SQL*Plus.
Jul 22 2020
Asterisk IAX error No Authority Found
This error is usually caused by a username/secret/type mismatch. This error also occurs when the context requested in the incoming call is different from one in the section of incoming peer. Multiple contexts in the peer section can be defined.
Jun 05 2020
How to fix ORA-28001: the password has expired ORA-28002 The Password Will Expire in 7 Days Errors
A new day started from ORA-28002 The Password Will Expire in 7 Days message from an Oracle DB. Let’s dig a bit how can we avoid this situation and manage our Oracle DB passwords.
Jun 04 2020
Unable to load component class org.sonar.scanner.bootstrap.ScannerPluginInstaller
Suddenly “Error during SonarQube Scanner execution” began to appear during at the end of Jenkins build. The full text in Jenkins console output looks like this:
1 2 3 4 5 6 7 8 9 |
ERROR: Error during SonarQube Scanner execution ERROR: Unable to load component class org.sonar.scanner.bootstrap.ScannerPluginInstaller ERROR: Caused by: Unable to load component class org.sonar.home.cache.FileCache ERROR: Caused by: Unable to load component class org.sonar.scanner.bootstrap.GlobalConfiguration ERROR: Caused by: Error 500 on http://10.10.10.10:9000/api/settings/values.protobuf : {"errors":[{"msg":"An error has occurred. Please contact your administrator"}]} ERROR: ERROR: Re-run SonarQube Scanner using the -X switch to enable full debug logging. ERROR: SonarQube scanner exited with non-zero code: 1 Finished: FAILURE |