• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question memcache how to install Ubuntu 16.04.1 LTS‬ for Plesk Onyx 17.0.17

# yum install gcc plesk-php56-devel make zlib-devel
# /opt/plesk/php/5.6/bin/pecl install memcache
# echo "extension=memcache.so" > /opt/plesk/php/5.6/etc/php.d/memcache.ini
# plesk bin php_handler --reread

Check that module is loaded:

# /opt/plesk/php/5.6/bin/php -i | grep "memcache support"
memcache support => enabled
 
# yum install gcc plesk-php56-devel make zlib-devel
# /opt/plesk/php/5.6/bin/pecl install memcache
# echo "extension=memcache.so" > /opt/plesk/php/5.6/etc/php.d/memcache.ini
# plesk bin php_handler --reread

Check that module is loaded:

# /opt/plesk/php/5.6/bin/php -i | grep "memcache support"
memcache support => enabled

root@127.0.0.1 ~ # apt-get install gcc plesk-php56-devel make zlib-devel
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package plesk-php56-devel
E: Unable to locate package zlib-devel
root@127.0.0.1 ~ # /opt/plesk/php/5.6/bin/pecl install memcache
/opt/plesk/php/5.6/bin/phpize not found. Run 'apt-get install plesk-php56-dev' to install it

Such an error. What to do?
 
E: Unable to locate package plesk-php56-devel
E: Unable to locate package zlib-devel
Name of the same packages may be different for CentOS and Ubuntu/Debian. As far as I remember correct name for Ububtu/Debian - plesk-php56-dev and zlib-dev
Check it.
 
Name of the same packages may be different for CentOS and Ubuntu/Debian. As far as I remember correct name for Ububtu/Debian - plesk-php56-dev and zlib-dev
Check it.
apt-get install plesk-php56-dev
and
apt-get install zlib1g-dev
 
Back
Top