[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
ラベル pgcli の投稿を表示しています。 すべての投稿を表示
ラベル pgcli の投稿を表示しています。 すべての投稿を表示

2021年1月18日月曜日

CentOS8.2にpgcliをインストールする

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面

インストール方法 以下のコマンド実行します
sudo dnf -y install python3 epel-release

sudo dnf -y groupinstall "Development Tools"

sudo dnf -y install postgresql-devel python3-devel

sudo pip3 install --upgrade pip

sudo pip3 install pgcli 

実行方法
pgcli -h <ホスト名またはアドレス> -U <ユーザ名> -W <データベース名>

関連情報 pgcliに関する他の記事はこちらを参照してください。

2020年4月29日水曜日

Ubuntu 20.04にpgcliをインストールする

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面


〇インストール方法
以下のコマンド実行します
sudo apt-get -y install python3-pip libpq-dev
sudo pip3 install pgcli
※ keyringを無効化したい場合は、以下のコマンドを入力します。
sed -i -e 's/keyring = True/keyring = False/' ~/.config/pgcli/config

〇実行方法
pgcli -h <ホスト名またはアドレス> -U <ユーザ名> -W <データベース名>

〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2020年4月15日水曜日

Raspberry Pi(Raspbian Buster)/Debian 10(Buster)にpgcliをインストールする

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面

〇インストール方法
以下のコマンド実行します
sudo apt-get -y install python3-pip libpq-dev
sudo pip3 install pgcli
※ keyringを無効化したい場合は、以下のコマンドを入力します。
sed -i -e 's/keyring = True/keyring = False/' ~/.config/pgcli/config

〇実行方法
pgcli -h <ホスト名またはアドレス> -U <ユーザ名> -W <データベース名>

〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2019年3月30日土曜日

Raspberry Pi(Raspbian Stretch)にpgcliをインストールする

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面


〇インストール方法
シェルから以下のコマンド実行します
sudo apt-get -y install python-pip libpq-dev
sudo pip install pgcli


〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2019年3月21日木曜日

VagrantでpgcliとPostgreSQL10がインストールされた仮想マシン(Ubuntu18.04)を構築する。

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面


〇構築方法
以下のVagrantfileを使用して、pgcliとPostgreSQL10がインストールされた仮想マシン(Ubuntu18.04)を構築する事ができます。
仮想マシンにsshでユーザ名vagrant、パスワードvagrantでログオンできます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-18.04"
  config.vm.hostname = "ub1804pgcli"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1804pgcli"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
config.vm.network "private_network", ip: "192.168.55.107", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.107", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get -y install language-pack-ja
sed -i.bak -e "s#http://archive.ubuntu.com/ubuntu/#http://ftp.riken.jp/pub/Linux/ubuntu/#g" /etc/apt/sources.list
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
timedatectl set-timezone Asia/Tokyo

# install postgresql
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list
apt-get -y install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get update
apt-get upgrade
apt-get -y install postgresql-10

echo "listen_addresses='*'" >> /etc/postgresql/10/main/postgresql.conf

#sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /etc/postgresql/10/main/pg_hba.conf

echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/10/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/10/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/10/main/pg_hba.conf

systemctl restart postgresql.service
su - postgres << EOF
createdb -T template0 --locale=ja_JP.UTF-8 --encoding=UTF8 test
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
grant all privileges on database test to test;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service


# install pgcli
apt-get -y install python-pip
pip install pgcli

echo 'pgcli -h localhost -U test -W test'

SHELL
end


〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2019年1月23日水曜日

VagrantでpgcliとPostgreSQL11がインストールされた仮想マシン(Ubuntu18.04)を構築する

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面


〇構築方法
以下のVagrantfileを使用して、pgcliとPostgreSQL11がインストールされた仮想マシン(Ubuntu18.04)を構築する事ができます。
仮想マシンにsshでユーザ名vagrant、パスワードvagrantでログオンできます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-18.04"
  config.vm.hostname = "ub1804pg11pgcli"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1804pg11pgcli"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
config.vm.network "private_network", ip: "192.168.55.107", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.107", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
apt-get update
apt-get -y install language-pack-ja
sed -i.bak -e "s#http://archive.ubuntu.com/ubuntu/#http://ftp.riken.jp/pub/Linux/ubuntu/#g" /etc/apt/sources.list
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
timedatectl set-timezone Asia/Tokyo

# install postgresql
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list
apt-get -y install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get update
apt-get upgrade
apt-get -y install postgresql-11

echo "listen_addresses='*'" >> /etc/postgresql/11/main/postgresql.conf

#sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /etc/postgresql/11/main/pg_hba.conf

echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/11/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/11/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/11/main/pg_hba.conf

systemctl restart postgresql.service
su - postgres << EOF
createdb -T template0 --locale=ja_JP.UTF-8 --encoding=UTF8 test
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
grant all privileges on database test to test;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service


# install pgcli
apt-get -y install python-pip
pip install pgcli

echo 'pgcli -h localhost -U test -W test'

SHELL
end


〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2018年7月5日木曜日

VagrantでpgcliとPostgreSQL10がインストールされた仮想マシン(Debian Stretch/9.4)を構築する

pgcliは補完機能を備えたPostgresqlのCUIです。

〇pgcliの画面


〇構築方法
以下のVagrantfileを使用して、pgcliとPostgreSQL10がインストールされた仮想マシン(Debian Stretch/9.4)を構築する事ができます。
仮想マシンにsshでユーザ名vagrant、パスワードvagrantでログオンできます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/debian-9.4"
  config.vm.hostname = "db94pg10pgcli"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "db94pg10pgcli"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
config.vm.network "private_network", ip: "192.168.55.108", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.108", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
apt-get -y install task-japanese
sed -i -e 's/# ja_JP.UTF-8 UTF-8/ja_JP.UTF-8 UTF-8/' /etc/locale.gen
locale-gen
update-locale LANG=ja_JP.UTF-8
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
apt-get update
#DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade


# install postgresql
echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" > /etc/apt/sources.list.d/pgdg.list
apt-get -y install wget ca-certificates
wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
apt-get update
apt-get upgrade
apt-get -y install postgresql-10

echo "listen_addresses='*'" >> /etc/postgresql/10/main/postgresql.conf

#sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /etc/postgresql/10/main/pg_hba.conf

echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/10/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/10/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/10/main/pg_hba.conf

su - postgres << EOF
createdb -T template0 --locale=ja_JP.UTF-8 --encoding=UTF8 test
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
grant all privileges on database test to test;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service


# install pgcli
apt-get -y install python-pip
pip install pgcli

echo 'pgcli -h localhost -U test -W test'
SHELL
end


〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2018年1月25日木曜日

VagrantでpgcliとPostgreSQLがインストールされた仮想マシン(Debian Stretch/9.2)を構築する

pgcliは補完機能を備えたPostgresqlのCUIです。
以下のVagrantfileを使用して、pgcliとPostgreSQLがインストールされた仮想マシン(Debian Stretch/9.2)を構築する事ができます。
仮想マシンにsshでユーザ名vagrant、パスワードvagrantでログオンできます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/debian-9.2"
  config.vm.hostname = "db92pgcli"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "db92pgcli"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.network "private_network", ip: "192.168.55.108", :netmask => "255.255.255.0"
  config.vm.network "public_network", ip:"192.168.1.108", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
# update packages
apt-get update
#DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" upgrade
# install postgresql
apt-get -y install postgresql-9.6
echo "listen_addresses='*'" >> /etc/postgresql/9.6/main/postgresql.conf
echo "standard_conforming_strings=off" >> /etc/postgresql/9.6/main/postgresql.conf
#sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /etc/postgresql/9.6/main/pg_hba.conf
echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/9.6/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/9.6/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/9.6/main/pg_hba.conf
su - postgres << EOF
createdb test
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
grant all privileges on database test to test;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service
# install pgcli
apt-get -y install pgcli
echo 'pgcli -h localhost -U test -W test'
SHELL
end

〇pgcliの画面



〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli

2017年12月22日金曜日

VagrantでpgcliとPostgreSQLがインストールされた仮想マシン(Ubuntu16.04)を構築する。

pgcliは補完機能を備えたPostgresqlのCUIです。
以下のVagrantfileを使用して、pgcliとPostgreSQLがインストールされた仮想マシン(Ubuntu16.04)を構築する事ができます。
仮想マシンにsshでユーザ名vagrant、パスワードvagrantでログオンできます。

Vagranfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-16.04"
  config.vm.hostname = "ub1604pgcli"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604pgcli"
     vbox.cpus = 2
     vbox.memory = 2048
     vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
  end
  config.vm.network "private_network", ip: "192.168.55.106", :netmask => "255.255.255.0"
  config.vm.network "public_network", ip:"192.168.1.106", :netmask => "255.255.255.0"
  config.vm.provision "shell", inline: <<-SHELL
# update packages
apt-get update
#DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-
confold" upgrade

# install postgresql
apt-get -y install postgresql
echo "listen_addresses='*'" >> /etc/postgresql/9.5/main/postgresql.conf
echo "standard_conforming_strings=off" >> /etc/postgresql/9.5/main/postgresql.conf
#sed -i 's/host.*all.*all.*127.0.0.1/#host    all             all             127.0.0.1/g' /etc/postgresql/9.5/main/pg_hba.conf
echo "host    all         all         127.0.0.1/32          password" >> /etc/postgresql/9.5/main/pg_hba.conf
echo "host    all         all         192.168.1.0/24          password" >> /etc/postgresql/9.5/main/pg_hba.conf
echo "host    all         all         192.168.55.0/24          password" >> /etc/postgresql/9.5/main/pg_hba.conf
su - postgres << EOF
createdb test
psql -c "
alter user postgres with password 'postgres';
create user test with password 'test';
grant all privileges on database test to test;
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql.service

# install pgcli
apt-get -y install pgcli

echo 'pgcli -h localhost -U test -W test'
SHELL
end

〇pgcliの画面



〇関連情報
・pgcliに関する他の記事はこちらを参照してください。

・pgcliのgithubリポジトリ
https://github.com/dbcli/pgcli