After upgrade to 3.22.11, plack does not start I used debian packages to install plack-error.log: Use of uninitialized value $ip in hash element at /usr/share/perl5/Cache/Memcached.pm line 267. Use of uninitialized value $ip in index at /usr/share/perl5/Cache/Memcached.pm line 293. Use of uninitialized value in subroutine entry at /usr/share/perl5/Cache/Memcached.pm line 302. Use of uninitialized value $ip in hash element at /usr/share/perl5/Cache/Memcached.pm line 267. Use of uninitialized value $ip in index at /usr/share/perl5/Cache/Memcached.pm line 293. Use of uninitialized value in subroutine entry at /usr/share/perl5/Cache/Memcached.pm line 302. Error while loading /etc/koha/plack.psgi: Bad arg length for Socket::pack_sockaddr_in, length is 0, should be 4 at /usr/lib/x86_64-linux-gnu/perl5/5.20/Socket.pm line 833. BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Context.pm line 107. Compilation failed in require at /usr/share/koha/lib/C4/Branch.pm line 22. BEGIN failed--compilation aborted at /usr/share/koha/lib/C4/Branch.pm line 22. Compilation failed in require at /etc/koha/plack.psgi line 30. BEGIN failed--compilation aborted at /etc/koha/plack.psgi line 30.
The same problem is in koha 16.05.04 using the debian packages. The problem is that the memcached configuration variables are extracted from the apache configuration file incorrectly so you get '"127.0.0.1:11211"' including double quotes as the servers parameter to memcached. The below patch for koha-functions.sh fixes the problem. It is not nice to extract configuration from the apache configuration files like this. I would prefer if the memcached configuration was moved to the koha configuration file. diff --git a/debian/scripts/koha-functions.sh b/debian/scripts/koha-functions.sh index b6f1203..1e1d209 100755 --- a/debian/scripts/koha-functions.sh +++ b/debian/scripts/koha-functions.sh @@ -50,7 +50,7 @@ get_memcached_servers_for() local apache_file=$(get_apache_config_for $instance) local memcached_servers=$( grep 'MEMCACHED_SERVERS' ${apache_file} | - awk '{print $3}' | uniq + awk -F'[\t "]+' '{print $4}' | head -n 1 ) echo "${memcached_servers}" @@ -63,7 +63,7 @@ get_memcached_namespace_for() local apache_file=$(get_apache_config_for $instance) local memcached_namespace=$( grep 'MEMCACHED_NAMESPACE' ${apache_file} | - awk '{print $3}' | uniq + awk -F'[\t "]+' '{print $4}' | head -n 1 ) echo "${memcached_namespace}"
In master the memcache configuration is set in koha-conf file, so I think for stable versions we could adapt this quick fix. See bug 11921
(In reply to Josef Moravec from comment #2) > In master the memcache configuration is set in koha-conf file, so I think > for stable versions we could adapt this quick fix. > > See bug 11921 Do you have a good idea for the fix? I really do not like the patch from bug 17262 actually. It won't work if the first virtualhost (from the apache config file) does not have a memcached config defined but the second has. It won't work either if the 2 are configured but are different.
(In reply to Jonathan Druart from comment #3) > (In reply to Josef Moravec from comment #2) > > In master the memcache configuration is set in koha-conf file, so I think > > for stable versions we could adapt this quick fix. > > > > See bug 11921 > > Do you have a good idea for the fix? > I really do not like the patch from bug 17262 actually. It won't work if the > first virtualhost (from the apache config file) does not have a memcached > config defined but the second has. It won't work either if the 2 are > configured but are different. I think we don't have a solution for these 2 cases actually and we will have to assume it will not happen (or not taken into account).
Created attachment 55967 [details] [review] Bug 17342: (bug 17262 follow-up) fix the way to retrieve memcached config from apache The problem is that the memcached configuration variables are extracted from the apache configuration file incorrectly so you get '"127.0.0.1:11211"' including double quotes as the servers parameter to memcached.
The fast fix is to disable memcached and wait for the real fix. I already built two package versions for 16.05.04 because of this. I am not doing another before this has been resolved properly. For the time being, comment out memcached in your config while I am on vacation. :)
Created attachment 56040 [details] [review] Bug 17342: (bug 17262 follow-up) fix the way to retrieve memcached config from apache The problem is that the memcached configuration variables are extracted from the apache configuration file incorrectly so you get '"127.0.0.1:11211"' including double quotes as the servers parameter to memcached. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Note this only applies on 3.22.x but it does fix the problem Definitely needed for 3.22.12
Created attachment 56048 [details] [review] Bug 17342: (bug 17262 follow-up) fix the way to retrieve memcached config from apache The problem is that the memcached configuration variables are extracted from the apache configuration file incorrectly so you get '"127.0.0.1:11211"' including double quotes as the servers parameter to memcached. Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz> Note this only applies on 3.22.x but it does fix the problem Definitely needed for 3.22.12 Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(In reply to Chris Cormack from comment #7) > Note this only applies on 3.22.x but it does fix the problem > Definitely needed for 3.22.12 It's needed for 16.05.x as well.
Pushed in 16.05. Will be in 16.05.05.
Pushed to 3.22.x, will be in 3.22.12