vRNI was installed and configured, but we forgot to put proper license and after demo license expired, we was locked down to put active license into environment.

Some work around found which allow you activate temporary admin account. 

1. Ssh to vRNI platform controller:

./check-service-health.sh

Clear

psql -U postgres -h localhost -d vnera -c "COPY (select * from users) TO STDOUT"

psql -U postgres -h localhost -d vnera -c "COPY (select * from customer_info) TO STDOUT"

psql -U postgres -d vnera -h localhost -c "update customer_info set state ='ACTIVE' where customerid=(select customerid from users where useremail='admin@local')"

psql -U postgres -h localhost -d vnera -c "COPY (select * from customer_info) TO STDOUT"