○Adminerの画面
ブラウザでhttp://192.168.1.105/adminerにアクセスして、ホストにlocalhost、ユーザー・パスワード・データベースにpostgresを指定します。
○構築方法
以下のVagrantfileを使用して、AdminerとPostgreSQLをインストールした仮想マシン(CentOS7.4)を構築する事ができます。
Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/centos-7.4"
config.vm.hostname = "co74adminerpg"
config.vm.provider :virtualbox do |vbox|
vbox.name = "co74adminerpg"
vbox.cpus = 2
vbox.memory = 2048
vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
end
config.vm.network "private_network", ip: "192.168.55.105", :netmask => "255.255.255.0"
config.vm.network "public_network", ip:"192.168.1.105", :netmask => "255.255.255.0"
config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8
# download and install postgresql.
wget https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm
rpm -Uvh pgdg-centos96-9.6-3.noarch.rpm
yum -y update
yum -y install postgresql96-server postgresql96-devel postgresql96-contrib
systemctl enable postgresql-9.6
# initialize postgresql server
/usr/pgsql-9.6/bin/postgresql96-setup initdb
echo "listen_addresses='*'" >> /var/lib/pgsql/9.6/data/postgresql.conf
sed -i 's/host.*all.*all.*127.0.0.1/#host all all 127.0.0.1/g' /var/lib/pgsql/9.6/data/pg_hba.conf
sed -i 's|host.*all.*all.*::1/128|#host all all ::1/128|g' /var/lib/pgsql/9.6/data/pg_hba.conf
echo "host all all ::1/128 password" >> /var/lib/pgsql/9.6/data/pg_hba.conf
echo "host all all 127.0.0.1/32 password" >> /var/lib/pgsql/9.6/data/pg_hba.conf
echo "host all all 192.168.1.0/24 password" >> /var/lib/pgsql/9.6/data/pg_hba.conf
echo "host all all 192.168.55.0/24 password" >> /var/lib/pgsql/9.6/data/pg_hba.conf
systemctl start postgresql-9.6.service
su - postgres << EOF
psql -c "
alter user postgres with password 'postgres';
"
EOF
echo "postgres:postgres" | chpasswd
systemctl restart postgresql-9.6.service
# install apache2 and php
yum -y install --enablerepo=remi,remi-php71 httpd php php-mbstring php-pgsql
mkdir -p /opt/adminer
cd /opt/adminer
wget https://github.com/vrana/adminer/releases/download/v4.6.2/adminer-4.6.2.php
mv adminer-4.6.2.php index.php
chown -R apache:apache /opt/adminer
sudo ln -s /opt/adminer/ /var/www/html/
systemctl restart httpd
echo 'access -> http://192.168.1.105/adminer'
echo 'host: localhost, user: postgres, password: postgres, database postgres'
SHELL
end
〇関連情報
・Adminerに関する他の情報はこちらを参照してください。
・Adminerのプロジェクトwebサイト
https://www.adminer.org/
0 件のコメント:
コメントを投稿