Categories
Knowledge Support Support exacqVision Server Categories

Axis Camera Q3515 Auto Focus Button doesn’t show up in Client

If the client does not show the Auto Focus Button in the clients camera setting page please do the following.

This can be seen on server/client 19.12 through 21.06. This is a camera side issue and not server related.

Axis sent instructions to tech for case 02148631.

  1. Default the Camera via gui. Make sure the camera is not connected to our client.
  2. Update the FW of the camera to latest of Axis website. FW10.6.0
  3. Then connect the camera to the server.
Categories
Knowledge Support Support exacqVision Server Products exacqVision Hardware Uncategorized

Disabling Watchdog for units with lack of Clarity in logs for Unexpected Errors.

IF you have a unit that is not clearly stating the reason why the unit is rebooting or getting random unexpected errors turn watchdog off to see if the unexpected errors go away and the unit remains running with no random reboots. I would enable debugging in the core/psfpi/sysmgmt/ in the client to gain the ability to get more detailed logs in case the unit remains rebooting randomly. This is not to be done if there are logs pointing to an issues.

Watchdogs – Enabling/Disabling
Windows
Edit C:\Program Files\exacqVision\Server\sysmgmtpi.xml
Locate the section similar to the following:
<Watchdogs ID=”3604480″>
<Watchdog Source=”Nuvoton LPC I/O NCT6791D” Enabled=”1″ Timeout=”40″ />
</Watchdogs>
* Change Enabled =”1” to Enabled =”0”
* Save the file
* Restart the exacqVision Server Service

Linux
$ cd /usr/local/exacq/server/
$ sudo nano sysmgmtpi.xml
* locate the section similar to the following
Watchdogs ID=”3604480″
Sensors ID=”3604480″ Enabled=”1″ Status=”1″
* change Enabled =”1” to Enabled =”0”
* Save and close the file

Before
$ sudo cat sysmgmtpi.xml | grep -i watchdog
Watchdogs ID=”3604480″
Watchdog Source=”ITE Tech IT8728 EC-LPC I/O” Enabled=”1″ Timeout=”40″
Watchdogs

After
$ sudo cat sysmgmtpi.xml | grep -i watchdog
Watchdogs ID=”3604480″
Watchdog Source=”ITE Tech IT8728 EC-LPC I/O” Enabled=”0″ Timeout=”40″
Watchdogs

Categories
Knowledge Support Support Categories Products exacqVision Integrations

Panasonic Motion tab does not accept Default Motion Window

Panasonic model WV-SW458 Fisheye On Firmware 2.50 .
When setting up a new camera in the client and notice the motion window is not saving with the default motion window.

Work Around

Edit the motion window and delete any motion windows that exist. Then create a new motion window and draw the boarder of the motion window smaller than the boarder of the cameras field of view and apply. The motion window will save. If you use the default motion window and hit apply, the motion window will not save. It has to be a little bit smaller than the full boarder of the cameras FOV.

This will be in our 21.09 build release.

Categories
Knowledge Support Support Illustra exacqVision Server Categories Products

My Illustra Camera Isn’t Recording Motion

Issue

Illustra cameras may be showing a status of “Motion not Supported” or motion is not being detected.

As part of cyber security compliance Illustra camera firmware is now defaulting to ‘Enhanced’ vs ‘Standard’ security resulting in the camera sending out metadata over HTTPS instead of HTTP. 

Resolution

Select one of the following options:

  • Update the Server version to 22.12.5 or higher.
    Exacq’s ability to accept metadata over HTTPS was enhanced in version 22.12.5. If your SSA does not permit you to update the ExacqVision Server version to 22.12.5 or higher, you will need to choose from the remaining options below.<br><br>
  • Factory default the camera and choose Standard instead of Enhanced security. See Article 14441 on the differences between Standard and Enhanced security modes.
  • Or if the camera is using Enhanced Security, then enable ‘Video over HTTP’ in the camera’s GUI
    • To change this setting, navigate to the Security page in the Illustra camera web interface.
    • Click the ‘Edit’ link beside ‘Video over HTTP’.
    • Place a check mark in the box adjacent to ‘Video over HTTP’.
    • Return to the ‘Add IP Cameras’ page in the ExacqVision Client.
    • Disable then re-enable the camera to pull the new camera settings.

<br>

Categories
User Guides Knowledge Support Documentation Support exacqVision Webservice Products

Validating Certificate Permissions for SSL and HTTPS on Linux for WebService

In this example using Letsencrypt SSL certificates. The webservice is behind HAProxy and was not been able to successfully configure HAProxy to update Letsencrypt certificates over HTTP. Therefore, I manually updated the certificate.
/etc/webservice/tls/server.crt _> /etc/letsencrypt/live/site.com/cert.pem

/etc/webservice/tls/server.key -> /etc/letsencrypt/live/site.com/privkey.pem.

After updating the certificates, I linked the original to the new certificates in the Letencrypt folder:
When I try to connect to the webservice, I get this error message sent an invalid response. ERR_SSL_PROTOCOL_ERROR’.


The destination of his symlink, not the symlink itself, needs to be readable by the nvrweb user. In this example the directory that the symlink did not have permissions to allow the link to work correctly.

The best way to be sure would be to run terminal command
sudo -i
to root and then run
su nvrweb -s /bin/bash
and try to view the files (e.g., cat the paths listed in the config file).
This should give you an out put.

{
“service”: {
“name”: “Customer Name”,
“url”: “https://site.com”,
“loginTokenExpiration”: 30,
“discoverable”: true,
“inactivityTimeout”: 0,
“enableAutocomplete”: false,
“enableRelay”: false
},
“webserver”: {
“listen”: 80,
“tls”: {
“listen”: 443,
“cert”: “/etc/webservice/tls/server.crt”,
“key”: “/etc/webservice/tls/server.key”,
“type”: “external”
}
},
“log”: {
“duration”: 1,
“interval”: “W”,
“level”: “debug”,
“retain”: 1
},
“servers”: [
{
“host”: “site.com”,
“port”: 22609,
“passthrough”: {
“enabled”: false
},
“poweruser”: {
“enabled”: true,
“username”: “INFO”,
“password”: ” INFO”
}
}
],
“nvrg”: {
“port”: 22717,
“remote”: {
“enabled”: false,
“port”: 35111
}
},
“updates”: {
“fileInfo”: “https://www.exacq.com/downloads/evFileInfo.txt”,
“downloadTimeout”: 10
},
“auth”: {
“type”: “none”

We also need to make sure nvrweb can read the cert files
/etc/webservice/tls/server.crt and .key
The output will show the certs.

nvrweb@sunstone:/root$ cd /etc/webservice
nvrweb@sunstone:/etc/webservice$ cat tls/server.crt
—–BEGIN CERTIFICATE—–
Contents of cert will be displayed here.
—–END CERTIFICATE—–

nvrweb@sunstone:/etc/webservice$ cat tls/server.key
—–BEGIN PRIVATE KEY—–
Contents of Cert will be displayed here
—–END PRIVATE KEY—–

These certs were in the TLS directory and being linked to the Letsencrypt folder, which we found having permissions issues.

To check try the following:
Try the same thing with su to nvrweb and see if nvrweb can access the certs in the let’s encrypt folder, before changes WS config.
Important to note that it’s not just the permissions of the target file that matter, but all the directories in between. In this case the target file was fine but the directory was LetsEncrypt and that did not have permissions. Since we were pointing the link to another file, that file needs to be accessible to nvrweb.

ls -ld for each directory – /etc/letsencrypt, /etc/letsencrypt/live, /etc/letsencrypt/site.com

Without -d it will show the contents, if you want to look at the directory like /etc/letsencrypt it’s necessary to do ls -ld /etc/letsencrypt

The site.com directory is fine. We need to check the live or letsencrypt directories.
letsencrypt live directory’s permissions are rwx—- which means only root can enter or read the directory.

In the above photo we can see that the Permission is denied for the letsencrypt/live folder.

Configuration this way in not the normal process and it is possible the next time I run letsencrypt again to update certs it might error due to perms or reset them. The process might need to be done each time.

Categories
Knowledge Support Support exacqVision Enterprise Categories Products Uncategorized

Can not log into EM after updating to 21.03

Customers report that on Windows 10 units updated to 21.03 they experience an issue when they browse to the localhost to log into EM, it fails with an error that shows: This site can’t be reached.

Microsoft link found here detailing other issues similar.

HERE

If you check the services the Apache service will be in a stopped state.
Also check the System Logs for an error:

Error in System Logs show:
The Apache service reported the following error:
httpd.exe: Could not open configuration file C:/Program Files/exacqVision/EnterpriseManager/apache_solr/apache2/conf/httpd.confN: The system cannot find the file specified.

To resolve this on the EM server go to
Windows: C:/Program Files/exacqVision/EnterpriseManager/apache_solr/apache2/conf/
There is a file called httpd.conf
Copy this file and paste it back into the same folder and rename the file to httpd.confN .

Once this is done go to the services and start the solr apache service.
Now log into the localhost.

Categories
Knowledge Support Support Categories Products exacqVision Hardware

Dirty Cache not allowing OS to boot

If a customer calls with a system not booting and is prompted to hit X to clear the Cache, please see this forum on current suggestions and provide feedback.

https://forum.exacq.com/t/current-issue-dirty-cache/74

Note: This has not been fully root caused yet but recommendations can be found here: