Quantcast
Channel: Kaltura - Latest posts
Viewing all articles
Browse latest Browse all 7410

Analytics not working on version 10.16

$
0
0

Yesterday I decided the only way to move forward was to push through and get kaltura upgraded to the latest version. It took a while to hunt down and fix several errors during the process, but I was finally able to get kaltura upgraded to 11.21. I had to completely drop the dwh databases according to this article. https://github.com/kaltura/platform-install-packages/blob/Kajam-11.21.0/doc/kaltura-packages-faq.md#analytics-issues

When I tried to drop the tables I kept getting this error "ERROR 1051 (42S02): Unknown table" for many of the tables. The only solution ended up being to delete the files using rm -Rf /var/lib/mysql/kalturadw/*

I also kept getting quite a few PHP Fatal errors. I made a script based on similar problems others have faced and it worked.

#!/bin/bash
rm -Rf /opt/kaltura/app/base-config-generator.lock
rm -Rf /opt/kaltura/app/base-config.lock
service httpd stop
service memcached stop
service kaltura-monit stop
php /opt/kaltura/app/generator/generate.php
php /opt/kaltura/app/deployment/base/scripts/installPlugins.php
service kaltura-monit start
service httpd start
service memcached start

I then had to delete my cache because I was now getting permission errors
> find /opt/kaltura/app/cache/ -type f -exec rm {} \;

My Kaltura ENV is now 11.21. I no longer get any errors in my DWH logs. However, the only statistic that works is the Top Contributors Analytics. Nothing else works. I have played several videos (embedded on a separate site) and the stats do not change. Should I open up another thread?


Viewing all articles
Browse latest Browse all 7410

Trending Articles