user security

3
User Security in MySQL # The MySQL privilege system ensures that all your users can perform only the operations that are allowed to them. # MySQL security works by limiting both the users who have access to a database and what they are allowed to do once they have access. # When you connect to a MySQL server, your identity is determined by the host system that you are connected to and the user ID that you specify.

Upload: padmaashree-arunachalem

Post on 16-Jul-2015

251 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: User security

User Security in MySQL

# The MySQL privilege system ensures that all your users can perform only the operations that are allowed to them.

# MySQL security works by limiting both the users who have access to a database and what they are allowed to do once they have access.

# When you connect to a MySQL server, your identity is determined by the host system that you are connected to and the user ID that you specify.

Page 2: User security

# When you issue SQL statements after connecting, MySQL access control grants privileges according to your identity and what you want to do.

# MySQL access control performs the following stages when you are running a client program that connects to the MySQL server:

* Stage 1: The MySQL server checks whether you are allowed to connect.

* Stage 2: The MySQL server checks each SQL statement that you issue to determine whether you have sufficient privileges to perform the operation.

Page 3: User security

MySQL provides the following tools that you can use to administer MySQL, work with MySQL databases, run queries, and so on:

* MySQL Administrator. * MySQL Query Browser.