Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

6.

...

Code Block
cd <magento_root_directory>
tar -xf <package_name>
cp -R server/* ./

...

Run upgrade (Install POS)

Code Block
php bin/magento setup:upgrade

...

7. Deploy POS client

Code Block
php bin/magento webpos:deploy

...

8. Run code compilation

Code Block
php bin/magento setup:di:compile

...

9. Adjust Redis session configuration

Note: This is an optional configuration if you are using Redis for Magento Session.

...

  • Edit the value max_concurrency to a suitable number. Magento recommend we set that number by 10% of the number of PHP processes. If you don’t know that then try in the range from 6 to 24 is fine. For example 20.

...

10. Install Magento Cron

Code Block
php bin/magento cron:install

...

11. Reindex All

Code Block
php bin/magento indexer:reindex

...

12. Turn on Production mode

Code Block
php bin/magento deploy:mode:set production

...

13. Turn off Maintenance

Code Block
php bin/magento maintenance:disable