Logo video2dn
  • Сохранить видео с ютуба
  • Категории
    • Музыка
    • Кино и Анимация
    • Автомобили
    • Животные
    • Спорт
    • Путешествия
    • Игры
    • Люди и Блоги
    • Юмор
    • Развлечения
    • Новости и Политика
    • Howto и Стиль
    • Diy своими руками
    • Образование
    • Наука и Технологии
    • Некоммерческие Организации
  • О сайте

Скачать или смотреть MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants)

  • Javid the Web Guy
  • 2022-07-23
  • 734
MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants)
  • ok logo

Скачать MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants) бесплатно в качестве 4к (2к / 1080p)

У нас вы можете скачать бесплатно MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants) или посмотреть видео с ютуба в максимальном доступном качестве.

Для скачивания выберите вариант из формы ниже:

  • Информация по загрузке:

Cкачать музыку MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants) бесплатно в формате MP3:

Если иконки загрузки не отобразились, ПОЖАЛУЙСТА, НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если у вас возникли трудности с загрузкой, пожалуйста, свяжитесь с нами по контактам, указанным в нижней части страницы.
Спасибо за использование сервиса video2dn.com

Описание к видео MySQL - Create, Delete User Accounts and Grant Privileges (create/drop user, grant, show grants)

MySQL has its own user accounts and security policies. Remember that most times “hackers” are only able to compromise a database using the privileges assigned to the compromised account.
#mysql #grants #privileges

CREATE USER ‘user’@’localhost’ IDENTIFIED BY ‘password’; – Create user with Password
DROP USER ‘user’@’localhost’ – Delete user
GRANT ‘permission’ on DATABASE.TABLE to ‘user@localhost’; – Grant privileges to user account
GRANT ALL PRIVILEGES ON . TO ‘user’@’localhost’; – Gives all permissions to ALL tables on ALL databases to user
GRANT ALL PRIVILEGES ON . TO ‘user’@’localhost’ WITH GRANT OPTION; – “with grant option” gives ability for account to give privileges to other accounts.
GRANT ‘permission'(column1,column2) on DATABASE.TABLE to user@localhost; – Grants privilege to columns in a table.
show grants; – shows privilege of current user
show grant for user; shows privilege for a specific user
select user, host from mysql.user; – display users and hosts for MySQL Server
REVOKE ‘privilege’ on DATABASE.TABLE FROM user@localhost;
mysql -u username -p – Login to MySQL from Linux
Privileges:

ALL PRIVILEGES – grants all privileges to the MySQL user
CREATE – allows the user to create databases and tables
DROP – allows the user to drop databases and tables
DELETE – allows the user to delete rows from specific MySQL table
INSERT – allows the user to insert rows into specific MySQL table
SELECT – allows the user to read the database
UPDATE – allows the user to update table rows
Full list of Privileges: https://dev.mysql.com/doc/refman/8.0/.

Комментарии

Информация по комментариям в разработке

Похожие видео

  • О нас
  • Контакты
  • Отказ от ответственности - Disclaimer
  • Условия использования сайта - TOS
  • Политика конфиденциальности

video2dn Copyright © 2023 - 2025

Контакты для правообладателей [email protected]