Enterprise Key expired @ login using community

Enterprise activation Key still listed but not installed. just upgraded to 10.0.5
Config report apps>market> entry “Key” has a value other community servers have ‘null’
Would like to remove login message

Hi,

Would you please fill the template of the forum so we can help you effectively ?

1 Like

Steps to reproduce

upgraded to 10.4 to 10.5.10
using ubuntu apt upgrade owncloud-files
libre office is installed
The Enterprise License Key application was checking the validity of an instance's subscription key for ownCloud Enterprise Edition. This app is obsoleted with ownCloud 10.5.0 and all functionality has been removed. You can safely disable it.
Setup in Admin App  Enterprise License Key has no disable button only Install available

Expected behaviour

login no warning messages at prelogin screen

Actual behaviour
Your Enterprise license key has expired.
Enterprise features have been disabled.
Please contact your administrator or sales@owncloud for a new license key.
@ prelogin

Error 5 access denied
Server configuration

Operating system: ubuntu 18.04
Web server: Apache/2.4.38
Database: 10.3.17-MariaDB-0+deb10u1
PHP version: 7.4.11
ownCloud version: 10.5.0.10 (stable)
Updated from an older ownCloud or fresh install: upgrade from fresh 10.4
Where did you install ownCloud from: Ubuntuu repositories
archive.canonical.com/ubuntu,us.archive.ubuntu.com/ubuntu/, security.ubuntu.com/ubuntu
Signing status (ownCloud 9.0 and above):

Forgot Database

mysql Ver 14.14 Distrib 5.7.31

Thanks for reply

I guess you have a license key set (and obsolete) in the DB. You’ll have to remove it manually.

In the oc_appconfig table, with the appid enterprise_key and configkey license-key. Just remove that DB entry.

1 Like

Hi jvillafanez
would you have update command for this(below was the response from the select command)

mysql> mysql> select * from oc_appconfig;
±---------------------±--------------------------------------------------±----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

| appid | configkey |configvalue
|
±---------------------±--------------------------------------------------±----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

this I found but I’m not great at mysql cli and this is a production server
| enterprise_key | license-key | demo-20200723-61950eed642dab0-864b33c7
any help is appreciated
thanks

Would this be right
update oc_appconfig SET configvalue = ‘’ WHERE appid = ‘enterprise_key’;

delete from oc_appconfig where appid = 'enterprise_key' and configkey = 'license-key';
2 Likes

Thank you for your time