koha REST API Authentication failure
enable RESTBasicAuth in system preferences
also you need to enable koha plack
sudo su
sudo koha-plack –enable library
sudo koha-plack –start library
sudo service apache2 restart
koha REST API Authentication failure
enable RESTBasicAuth in system preferences
also you need to enable koha plack
sudo su
sudo koha-plack –enable library
sudo koha-plack –start library
sudo service apache2 restart
to fix apache error
couldn’t release the accept mutex
in debian & ubuntu
do that
/etc/apache2/conf-available/mutex.confMutex file:${APACHE_LOCK_DIR} default inside the newly created filea2enconf mutexsystemctl restart apache2 copy the tomcat9.service file to /etc/systemd/system cp /usr/lib/systemd/system/tomcat9.service /etc/systemd/system/ and modify it by adding ReadWritePaths=/dspace/solr/ ReadWritePaths=/dspace/solr/search/data Then execute systemctl daemon-reload.
in the <VirtualHost *:80> add
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L]
add this to apache configuration
or .htaccess
SetEnvIf Authorization “(.*)” HTTP_AUTHORIZATION=$1
add this in apache file httpd-vufind.conf
<VirtualHost *:80>
DocumentRoot /usr/local/vufind/public
ServerName yourdomain.edu
ServerAlias www.yourdomain.edu
</VirtualHost>
Set the following For key column.
utf8 VARCHAR(255)utf8mb4 VARCHAR(191)sudo iptables -A INPUT -p tcp -s localhost –dport 8983 -j ACCEPT
sudo iptables -A INPUT -p tcp –dport 8983 -j DROP
sudo service iptables save
kill -9 $(lsof | grep deleted | cut -d " " -f4)
Step 1GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA name_schema TO name_user;
Step 2GRANT USAGE ON SCHEMA name_schema TO name_user;