Command Line to Create Mysql and Database and Grant All Permission

بسم الله Bismillah Command line how to create database, user and password mariadb or mysql with grant all privileges First you must login into mysql/mariadb command line mysql -u root If you never set login command line without root, you can read Yang Dilakukan Setelah Install Ulang GNU/Linux sudo mysql -u root Create DB database create database db_blogs; Create User and Password database create user 'blog_user'@'localhost' identified by 'blog_user!@#'; Set user get all privileges on database grant all privileges on db_blogs.* to 'blog_user'@'localhost'; Flush flush privileges; الحمد لله ...

September 24, 2021 · 1 min · Masari

Setting Up the Proxy for Apt on Ubuntu

Pakai jaringan indosat, beberapa link repo jadi unreachable, pasang proxy deh.

August 14, 2021 · 5 min · Masari

Got Permission Denied While Trying to Connect to the Docker Daemon Socket

Jalanin docker gagal, karena permission denied while trying connect socket

August 10, 2021 · 1 min · Masari