Issue
Unable to connect to Memcached
Environment
- CloudLinux
Solution
- Verify if memcache service is running and accessible
# telnet localhost 11211
Trying ::1...
telnet: connect to address ::1: Connection refused# systemctl status memcached
Unit memcached.service could not be found.# systemctl start memcached
Failed to start memcached.service: Unit memcached.service not found. -
Install the
memcached
package# yum install memcached
and start the
memcached
service# systemctl start memcached
# systemctl enable memcached
# systemctl status memcachedCause
Memcached not present in the system.
Comments
0 comments
Please sign in to leave a comment.