@merryfreespace thank you for your help. in this case i would like to disable captcha module manually in the database, reCaptcha has blocked me out of admin panel of my website, now i have access to my server and database thru SSH, when i ran command:
UPDATE system SET status = 0 WHERE name = “recaptcha”;
Seeing an error
“ERROR 1146 (42S02): Table ‘drupal.system’ doesn’t exist,
When i ran the following command to show table , i can not find the table named “system” of 131 rows in set:
select table_name from information_schema.tables where table_schema=’drupal’ and table_type=’base table’;
So wondering if I use the right table name? how to find the exact system table name to disable captcha module in Drupal ? my Drupal version is 8.5.5 Thank you very much.