cancel
Showing results for 
Search instead for 
Did you mean: 

Getting error at the time of reIndexing magento 2

SOLVED
   Did you know you can see the translated content as per your choice?

Translation is in progress. Please check again after few minutes.

Getting error at the time of reIndexing magento 2

HI guys,

             Can any one guide me why the below error is getting at the time of reindexing ?

 

VijaySais-Mini:aero vijaysai$ sudo php bin/magento indexer:reindex

Design Config Grid index has been rebuilt successfully in 00:00:01

Customer Grid indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Category Products indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Product Categories indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Catalog Rule Product indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Product Price indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Catalog Product Rule indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

Catalog Search indexer process unknown error:

Warning: ini_set(): Cannot find save handler 'memcache' in /Applications/MAMP/htdocs/aero/vendor/magento/framework/Session/SessionManager.php on line 565

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: Getting error at the time of reIndexing magento 2

we need use the below code in app/etc/env.php

 

‘session’ =>
array (
‘save’ => ‘files’,
),

View solution in original post

Re: Getting error at the time of reIndexing magento 2

@bharath553, Make sure that save_handler is modified in php.ini file

session.save_handler = memcache
Manish Mittal
https://www.manishmittal.com/

View solution in original post

2 REPLIES 2

Re: Getting error at the time of reIndexing magento 2

we need use the below code in app/etc/env.php

 

‘session’ =>
array (
‘save’ => ‘files’,
),

Re: Getting error at the time of reIndexing magento 2

@bharath553, Make sure that save_handler is modified in php.ini file

session.save_handler = memcache
Manish Mittal
https://www.manishmittal.com/