Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
MariaDB Cookbook

You're reading from  MariaDB Cookbook

Product type Book
Published in Mar 2014
Publisher
ISBN-13 9781783284399
Pages 282 pages
Edition 1st Edition
Languages
Concepts
Author (1):
Daniel Bartholomew Daniel Bartholomew
Profile icon Daniel Bartholomew

Table of Contents (20) Chapters

MariaDB Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Getting Started with MariaDB Diving Deep into MariaDB Optimizing and Tuning MariaDB The TokuDB Storage Engine The CONNECT Storage Engine Replication in MariaDB Replication with MariaDB Galera Cluster Performance and Usage Statistics Searching Data Using Sphinx Exploring Dynamic and Virtual Columns in MariaDB NoSQL with HandlerSocket NoSQL with the Cassandra Storage Engine MariaDB Security Index

Using roles to control user permissions


Roles are an alternative way of managing permissions. They are used to give users permissions as a group instead of individually. For example, all users from the finance department could be assigned to a finance role with permissions specific to the tasks they need to perform.

Roles were first introduced in MariaDB 10.0.

How to do it...

To create an example role and demonstrate how roles work, perform the following steps:

  1. Launch the mysql command-line client and connect to our MariaDB database server.

  2. Create a test database, if it doesn't exist, using the following statement:

    CREATE DATABASE IF NOT EXISTS test;
    
  3. Run the following command to create a role:

    CREATE ROLE read_only; 
    
  4. Grant the role some permissions using the following statement:

    GRANT SELECT ON test.* TO read_only; 
    GRANT USAGE  ON test.* TO read_only;
    
  5. Display the permissions granted to the role using the following statement:

    SHOW GRANTS FOR read_only;
    

    The output of the preceding statement is...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}