* Restarting PostgreSQL 9.3 database server [ OK ] リモートからの接続 デフォルトの設定ではリモート接続はできません。 リモートで運用したい場合は/etc/postgresql/9.3/main/postgresql.confの設定ファイルを変更する必要があります。 $ vi /etc/postgresql/9.3/main/postgresql.conf listen_addresse...
PostgreSQL、またはPostgresは、SQLクエリ言語の実装を提供するリレーショナルデータベース管理システムです。このクイックスタートガイドは、Ubuntu 20.04サーバーにPostgresをインストールする方法を示します。また、一般的なデータベース管理方法も紹介します。
# apt upgrade -y (7) 以下のコマンドを実行して、zabbixをインストールするためのソフトウェアをインストールします。 # apt install -y zabbix-server-pgsql zabbix-frontend-php php7.4-pgsql zabbix-apache-conf zabbix-agent # apt install -y postgresql (8) 以下のコマンドを実行して、デ...
PostgreSQL(DB)のインストール sudo apt update sudo apt install postgresql -y sudo service postgresql start sudo su - postgres -c psql postgres=# alter role postgres with password 'postgres'; postgres=# \q なお、PostgreSQLの「認証キー認証」を使う場合は、下記を先に実行してください sudo apt...
PostgreSQLにDBを作成 ※PostgreSQLのインストールと初期設定は省略します。 PostgreSQLに利用するDBを作成します。「new_role」、「password」、「codimd」は任意で変更します。 $psql-Upostgrespostgres=#CREATE ROLE new_role WITH LOGIN PASSWORD'password';postgres=#create database codimd owner new_role en...
公式の手順:https://www.zabbix.com/jp/download?zabbix=5.0&os_distribution=ubuntu&os_version=18.04_bionic&db=postgresql&ws=nginx zabbixリポジトリを登録します。 # wget https://repo.zabbix.com/zabbix/5.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_5.0-1+bionic_all.deb ...