LoginSignup
0
0

More than 1 year has passed since last update.

mysql restore db

Posted at
CREATE DATABASE wordpress CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
create user 'wordpress'@'localhost' identified by 'wordpress';
GRANT ALL ON wordpress.* TO 'wordpress'@'localhost' WITH GRANT OPTION;
gunzip < wordpress.sql.gz | mysql -u root -p wordpress
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0