Changes between Version 25 and Version 26 of HowTo/SakuraVpsSetup3


Ignore:
Timestamp:
Oct 23, 2018, 4:58:25 PM (6 years ago)
Author:
村山 俊之
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/SakuraVpsSetup3

    v25 v26  
    674674$ cd ~/tempsql
    675675$ sudo mysql -u root
    676 }}}
     676[sudo] password for murachi:
     677Welcome to the MariaDB monitor.  Commands end with ; or \g.
     678Your MariaDB connection id is 48
     679Server version: 10.0.36-MariaDB-0ubuntu0.16.04.1 Ubuntu 16.04
     680
     681Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
     682
     683Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
     684
     685MariaDB [(none)]>
     686MariaDB [(none)]> create database harapeko_press;
     687Query OK, 1 row affected (0.00 sec)
     688
     689MariaDB [(none)]> grant all privileges on harapeko_press.* to harapeko_press@localhost identified by '(パスワード)';
     690Query OK, 0 rows affected (0.02 sec)
     691
     692MariaDB [(none)]> quit
     693Bye
     694$ mysql -u harapeko_press -p harapeko_press < harapeko_press.sql
     695Enter password:
     696$
     697}}}