PostgreSQL: ERROR: permission denied to reassign objects
When reassigning all database objects to a new owner in PostgreSQL you might get this error: mydb=> REASSIGN OWNED BY admin TO new_admin; ERROR: permission denied to reassign objects This…
Permission denied: exec of … failed in apache
If apache returns 'Permission denied: exec of <filename> failed' then you are in two possible situations: 1. 'filename' IS A CGI SCRIPT There could be several reasons for this, for…
SSH troubleshooting
ERROR: Permission denied (publickey). This message appears when the remote ssh server has password authentication disabled. To fix this, edit /etc/ssh/sshd_config to enable password authentication: PasswordAuthentication yes Restart the SSH…
apache: fixing ‘config variable XX is not defined’ error
PROBLEM: You try to execute from a shell some apache command like this: # apache2 -t -D DUMP_MODULES and you get the following error messages: AH00111: Config variable ${APACHE_LOCK_DIR} is…
mysql: ‘%’ doesn’t match localhost and/or hostname
PROBLEM: You granted access privileges to a user connecting from anywhere using this command: mysql> GRANT ALL PRIVILEGES ON *.* TO prueba@'%' IDENTIFIED BY 'password' Then, when you try to…
samba troubleshooting
WARNING: Ignoring invalid value 'share' for parameter 'security' The value 'share' for paramater 'security' is no longer valid for recent versions of Samba, so if you were running an older…
Cassandra troubleshooting
Execution of 'nodetool status' fails Common error messages: Error: Could not find or load main class Error opening zip file or JAR manifest missing : /usr/local/bin/../ Error occurred during initialization…
pkg: PACKAGESITE in pkg.conf is deprecated
Newer versions of pkg require different configuration settings. If you upgrade from an old version of pkg you might get the following error every time you use pkg: pkg: PACKAGESITE…