- Apache (9)
- DNS / BIND (2)
- General Linux (7)
- Mail (8)
- Postfix (1)
- Qmail (4)
- Sendmail (3)
- MySQL (7)
- News (1)
- Other (2)
- Perl (1)
- PHP (5)
- Plesk (13)
- Redhat Linux (8)
- Ruby (1)
- Scripts (4)
- Security (4)
- iptables (2)
TopicNavigationUser login |
Deleting a MySQL UserIf you're using MySQL 4.1.1 or newer, you can use the following: DROP USER user@host;On older versions, you'll need to use: DELETE FROM mysql.user WHERE User='user' AND Host='host'; FLUSH PRIVILEGES; Here's an example: mysql> DELETE FROM mysql.user WHERE User='bob' AND Host='localhost'; Query OK, 1 row affected (0.00 sec) mysql> FLUSH PRIVILEGES; Query OK, 0 rows affected (0.00 sec) |
Linux JournalSlashdot |