How do remove a user from MySQL.user?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • M

    How do remove a user from MySQL.user?

    How do you permanently remove a user from the MySQL database.

    Delete from MySQL.user where user="Unwanted User";

    just seems to ignored.

    Thanks,

    Martin


  • steven

    #2
    Re: How do remove a user from MySQL.user?

    M <a101888@ic24.n et> wrote:[color=blue]
    > How do you permanently remove a user from the MySQL database.
    >
    > Delete from MySQL.user where user="Unwanted User";
    >
    > just seems to ignored.[/color]

    after the delete statement:
    FLUSH PRIVILEGES;

    (there are mysql NG's for this...)

    steven.

    Comment

    • M

      #3
      Re: How do remove a user from MySQL.user?


      "steven" <steven.mestdag h@esat.kuleuven .remove-this.ac.be> wrote in message
      news:INqVb.3290 $8J1.400425@pho bos.telenet-ops.be...[color=blue]
      > M <a101888@ic24.n et> wrote:[color=green]
      > > How do you permanently remove a user from the MySQL database.
      > >
      > > Delete from MySQL.user where user="Unwanted User";
      > >
      > > just seems to ignored.[/color]
      >
      > after the delete statement:
      > FLUSH PRIVILEGES;
      >
      > (there are mysql NG's for this...)[/color]

      I will take a look.

      Got it too work,

      Ta Everso,

      Martin.


      Comment

      Working...