PostgreSQL インストール
PostgreSQL 用のダウンロードディレクトリを作成
##■ ダウンロードするディレクトリを作成
[root@localhost ~]# mkdir -p /root/setup/rpm/postgresql/
[root@localhost ~]#
PostgreSQL インストール
##■ postgresql-libs をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/postgresql-libs-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql-libs インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/postgresql-libs-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/postgresql-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/postgresql-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql-devel をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/postgresql-devel-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql-devel インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/postgresql-devel-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql-server をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/postgresql-server-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ postgresql-server インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/postgresql-server-9.2.7-1.el7.x86_64.rpm
[root@localhost ~]#
##■ php-pgsql をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/php-pgsql-5.4.16-23.el7_0.3.x86_64.rpm
[root@localhost ~]#
##■ php-pgsql インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/php-pgsql-5.4.16-23.el7_0.3.x86_64.rpm
[root@localhost ~]#
##■ perl-version をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/perl-version-0.99.07-2.el7.x86_64.rpm
[root@localhost ~]#
##■ perl-version インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/perl-version-0.99.07-2.el7.x86_64.rpm
[root@localhost ~]#
##■ perl-DBD-Pg をダウンロードする
[root@localhost ~]# wget -P /root/setup/rpm/postgresql/ ftp://ftp.riken.jp/pub/Linux/centos/7/os/x86_64/Packages/perl-DBD-Pg-2.19.3-4.el7.x86_64.rpm
[root@localhost ~]#
##■ perl-DBD-Pg インストール
[root@localhost ~]# rpm -ihv /root/setup/rpm/postgresql/perl-DBD-Pg-2.19.3-4.el7.x86_64.rpm
[root@localhost ~]#
PostgreSQL 初期設定
[root@localhost ~]# postgresql-setup initdb
Initializing database ... OK
[root@localhost ~]#
PostgreSQL 起動・自動起動
##■ PostgreSQL 起動
[root@localhost ~]# systemctl start postgresql.service
[root@localhost ~]#
##■ PostgreSQL 自動起動を設定
[root@localhost ~]# systemctl enable postgresql.service
ln -s '/usr/lib/systemd/system/postgresql.service' '/etc/systemd/system/multi-user.target.wants/postgresql.service'
[root@localhost ~]#
以上で、PostgreSQLのインストールは完了です。
[ PostgreSQL 設定 ]
0 件のコメント:
コメントを投稿