Category Archives: General

your current session has been expired. magento 2

first check for current session life time

php bin/magento config:show admin/security/session_lifetime 

If there is no entry issue the following query

insert into core_config_data (config_id, scope, scope_id, path, value) values (null, 'default', 0, 'admin/security/session_lifetime', 36000);

If entry is there increase the session life time. It can be done in two ways

UPDATE core_config_data SET value = 86400 WHERE path = 'admin/security/session_lifetime';

OR

Issue the following command from magento root directory

php bin/magento config:set admin/security/session_lifetime 86400 
php bin/magento cache:clean

This should solve the problem

NFS

Network File System (NFS) is a distributed file system protocol originally developed by Sun Microsystems in 1984, allowing a user on a client computer to access files over a computer network much like local storage is accessed. NFS, like many other protocols, builds on the Open Network Computing Remote Procedure Call (ONC RPC) system. The NFS is an open standard defined in Request for Comments (RFC), allowing anyone to implement the protocol.