Last failed login: Sun Mar 17 12:34:37 JST 2024 from 175.139.217.113 on ssh:notty
There were 17051 failed login attempts since the last successful login.
Last login: Fri Mar 15 18:54:04 2024 from 159.192.33.125
__ ____ _______ ___ _ _____ __________
/ //_/ / / / ___// | / | / / | / ____/ _/
/ ,< / / / /\__ \/ /| | / |/ / /| |/ / __ / /
/ /| / /_/ /___/ / ___ |/ /| / ___ / /_/ // /
/_/ |_\____//____/_/ |_/_/ |_/_/ |_\____/___/
Version 8.4.4-2, Powered by Prime Strategy.
[root@118-27-33-〇〇〇 ~]# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 1735198
Server version: 10.1.41-MariaDB MariaDB Server
Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
MariaDB [(none)]> show databases;
+--------------------+
| Database |
+--------------------+
| b_cmslab |
| c_cmslab |
プログラムをどう書いていくかブログに残していきます。
複雑なプログラムもまずは簡単なコードを書いて動くところから試していきます。
サーバーにsshで接続
ssh ユーザー名@ホスト名
データーベースへの接続なら
mysql -u roo -p
そして、
show databases;
です。
次にデーターベースの作成で、
create database 〇〇〇;
| x-ing |
+--------------------+
35 rows in set (0.01 sec)
MariaDB [(none)]> create database 〇〇〇;
Query OK, 1 row affected (0.01 sec)
MariaDB [(none)]>
ノーコードよりコマンド打った方がシンプルで実は早いのです。