Create NextCloud Database

First run the commands below to create a blank NextCloud database.

Logon database:

sudo mysql -u root -p

Creat new blank database called nextcloud:

CREATE DATABASE nextcloud;

Creat database user: nextclouduser

CREATE USER ‘nextclouduser’@’localhost’ IDENTIFIED BY ‘new_password_here’;

Grant full access database for user:

GRANT ALL ON nextcloud.* TO ‘nextclouduser’@’localhost’ IDENTIFIED BY ‘user_password_here’ WITH GRANT OPTION;

Save your change and exit:

FLUSH PRIVILEGES;
EXIT;
Giới thiệu honest 237 bài viết
Mình lập blog này với mục đích lưu lại + chia sẻ các các kiến thức mình đã biết hoặc đang tìm hiểu. Cơ bản giúp ích cho mình :) Nhưng hy vọng sẽ mang lại sự khởi đầu thuận lợi cho người mới bắt đầu!