2021-08-04から1日間の記事一覧
CentOS7にPostgreSQLをインストールする手順まとめ ①PostgreSQLのインストール && バージョン確認 yum install postgresql-server -ypostgres --version ②データベース初期化 postgresql-setup initdb ③PostgreSQLの自動起動化設定 systemctl enable postgre…
SpringBootでAJP通信を行う際の設定 SpringBootの実行クラスの設定 @Configuration@SpringBootApplicationpublic class HelloWorldApplication extends SpringBootServletInitializer { public static void main(String[] args) { SpringApplication.run(Hel…