CentOS7にpostgreSQL9.4をインストール
(1)postgreSQLのダウンロード
(4)postgreSQLの起動
(5)postgreSQLの自動起動
systemctl enable postgresql-9.4
(2)PostgreSQLをインストール
(3)データベースを初期化
(4)postgreSQLの起動
(5)postgreSQLの自動起動
wget http://yum.postgresql.org/9.4/redhat/rhel-7-x86_64/pgdg-centos94-9.4-1.noarch.rpm
rpm -ivh pgdg-centos94-9.4-1.noarch.rpm yum -y install postgresql94-server postgresql94-devel postgresql94-contrib
# /usr/pgsql-9.4/bin/postgresql94-setup initdb Initializing database ... OK
systemctl start postgresql-9.4
コメント