Created
March 10, 2023 07:10
-
-
Save acosonic/3d7ed30ff31642d4be2a2c5f1446dc3d to your computer and use it in GitHub Desktop.
MemacheD (memcache with d) installation for PHP (run as root)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
apt install memcached libmemcached-tools | |
systemctl status memcached | |
echo stats | nc 127.0.0.1 11211 | |
apt install php-memcached | |
phpenmod memcached | |
apache2ctl restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment