エンジニア男

勉強したことの忘備録としてつらつら書いていきます。

PostgreSQL

TomcatとPostgreSQLの連携

[PostgreSQL] ①postgresql.confの変更 ※IPアドレスの変更とポートの開放 vi /var/lib/pgsql/data/postgresql.conflisten_address = 'localhost'posrt = 5432 ②postgresql.service ※起動スクリプトでポート番号を確認 vi /usr/lib/systemd/system/postgresql.…

CentOS7にPostgreSQLをインストールする手順

CentOS7にPostgreSQLをインストールする手順まとめ ①PostgreSQLのインストール && バージョン確認 yum install postgresql-server -ypostgres --version ②データベース初期化 postgresql-setup initdb ③PostgreSQLの自動起動化設定 systemctl enable postgre…