Hướng Dẫn Chi Tiết: Tạo Database và User MySQL Bằng Lệnh (Command)

Tiếng Việt

MySQL là một hệ quản trị cơ sở dữ liệu quan hệ (RDBMS) mã nguồn mở và miễn phí. Nó là một trong những hệ quản trị cơ sở dữ liệu phổ biến nhất trên thế giới, được sử dụng bởi các trang web, ứng dụng và doanh nghiệp lớn nhỏ.

Để sử dụng MySQL, bạn cần tạo một database và một user. Database là nơi lưu trữ dữ liệu của bạn, và user là người dùng có quyền truy cập vào database đó.

Trong bài viết này, chúng tôi sẽ hướng dẫn bạn cách tạo database và user MySQL bằng lệnh (command).

Chuẩn bị

Để tạo database và user MySQL, bạn cần có quyền truy cập vào máy chủ MySQL. Bạn có thể truy cập máy chủ MySQL bằng cách sử dụng trình khách MySQL hoặc bằng cách sử dụng lệnh mysql từ dòng lệnh.

Tạo database

Để tạo database, bạn sử dụng lệnh create database.

create database database_name;

Trong đó, database_name là tên của database bạn muốn tạo.

Ví dụ:

create database my_database;

Tạo user

Để tạo user, bạn sử dụng lệnh create user.

create user user_name@localhost identified by ‘password’;

Trong đó, user_name là tên của user bạn muốn tạo, localhost là địa chỉ IP của máy chủ MySQL, và password là mật khẩu của user.

Ví dụ:

create user my_user@localhost identified by ‘my_password’;

Gán quyền cho user

Để gán quyền cho user, bạn sử dụng lệnh grant.

grant all privileges on database_name.* to user_name@localhost;

Trong đó, database_name là tên của database bạn muốn gán quyền, và user_name là tên của user bạn muốn gán quyền.

Ví dụ:

grant all privileges on my_database.* to my_user@localhost;

Kiểm tra quyền

Để kiểm tra quyền của user, bạn sử dụng lệnh show grants for user_name@localhost;

Ví dụ:

show grants for my_user@localhost;

Thoát khỏi MySQL

Để thoát khỏi MySQL, bạn sử dụng lệnh exit;

Kết luận

Trên đây là hướng dẫn chi tiết cách tạo database và user MySQL bằng lệnh (command). Bạn có thể sử dụng hướng dẫn này để tạo database và user cho các dự án của mình.

English

MySQL is a free and open-source relational database management system (RDBMS). It is one of the most popular database management systems in the world, used by websites, applications, and businesses of all sizes.

To use MySQL, you need to create a database and a user. A database is where your data is stored, and a user is a person who has access to that database.

In this article, we will show you how to create a MySQL database and user using the command line.

Preparation

To create a MySQL database and user, you need to have access to a MySQL server. You can access a MySQL server using a MySQL client or by using the mysql command from the command line.

Create a database

To create a database, you use the create database command.

create database database_name;

Where database_name is the name of the database you want to create.

For example:

create database my_database;

Create a user

To create a user, you use the create user command.

create user user_name@localhost identified by ‘password’;

Where user_name is the name of the user you want to create, localhost is the IP address of the MySQL server, and password is the password for the user.

For example:

create user my_user@localhost identified by ‘my_password’;

Grant privileges to a user

To grant privileges to a user, you use the grant command.

grant all privileges on database_name.* to user_name@localhost;

Hướng Dẫn Chi Tiết: Tạo Database và User MySQL Bằng Lệnh (Command)
Spread the love

Leave a Reply

All in one