Error
Error Code:
1095
MariaDB Error 1095: Denied Thread Kill Permission
Description
MariaDB Error 1095 indicates that the user attempting to terminate a database connection or thread does not have the necessary permissions to do so. This typically occurs when a user tries to execute the `KILL` command on a thread that they do not own, or when they lack the required global privileges like `PROCESS` or `SUPER`.
Error Message
You are not owner of thread %lu
Known Causes
3 known causesInsufficient User Privileges
The current MariaDB user lacks the `PROCESS` or `SUPER` global privileges, which are required to kill threads owned by other users or system threads.
Attempting to Kill Another User's Thread
A user tried to terminate a database connection (thread) that was initiated by a different MariaDB user account.
Targeting a System or Internal Thread
The `KILL` command was issued against an internal MariaDB system thread, which cannot be terminated by regular user accounts.
Solutions
Coming SoonGeneral Troubleshooting Tips
- Check the error message carefully for specific details
- Review recent changes that might have caused the error
- Search for the exact error code in the official documentation
- Check log files for additional context
- Try restarting the application or service