Kの雑記

最近忘れやすいので、備忘録がわり

DB

MariaDBの使い方

DB

ログイン mysql -h [host] -u [ユーザ] -p mysql -u [user] [db_name] DB一覧 show databases; DBアクセス use [db_name]; テーブル一覧 show tables; ユーザ一覧 SELECT Host, User, Password FROM mysql.user; ユーザの追加 create user `testuser`@`local…

postgreSQL11.6インストール

DB

CentOS用のレポジトリ設定 各OS用のレポジトリ一覧 PostgreSQL RPM Repository (with Yum) centos用のレポジトリをインストール yum -y install https://download.postgresql.org/pub/repos/yum/reporpms/EL-7-x86_64/pgdg-redhat-repo-latest.noarch.rpm Po…