cancel
Showing results for 
Search instead for 
Did you mean: 

Centos - Nginx - how to solve identifier":"LOCKED_RECORD_INFO_SYSTEM_CONFIG

Centos - Nginx - how to solve identifier":"LOCKED_RECORD_INFO_SYSTEM_CONFIG

Configuration :

etc/nginx/conf.d/magento.conf

 

upstream fastcgi_backend {
  server  127.0.0.1:9000;
}

server {

  listen 8085;
  server_name 192.168.1.64:8085;
  set $MAGE_ROOT /usr/share/nginx/html/magento;
  include /usr/share/nginx/html/magento/nginx.conf.sample;

  error_log /var/log/nginx/magento_error.log;
  access_log /var/log/nginx/magento_access.log;

}

If i run => http://192.168.1.64:8085 i am getting following error,

 

[2020-01-18 11:15:23] main.DEBUG: cache_invalidate: {"method":"GET","url":"http://192.168.1.64:8085/","invalidateInfo":{"identifier":"interception"}} []
[2020-01-18 11:15:26] main.DEBUG: cache_invalidate: {"method":"GET","url":"http://192.168.1.64:8085/","invalidateInfo":{"identifier":"LOCKED_RECORD_INFO_SYSTEM_CONFIG"}} []

 

How to solve the error?