29回勉強会資料「PostgreSQLのリカバリ超入門」
See also http://www.interdb.jp/pgsql (Coming soon!)
初心者向け。PostgreSQLのWAL、CHECKPOINT、 オンラインバックアップの仕組み解説。
これを見たら、次は→ http://www.slideshare.net/satock/29shikumi-backup
カーネル読書会での案内:クラウドコンピューティングでは仮想マシンが一つの主要な構成技術になっているが、このセキュリティ課題(I/O Fuzzing, Cross VM Side Channel Attack など)および対処について話します。日経コンピュータ 2010/03/31 の「仮想マシンに潜むセキュリティ問題」の内容を中心に議論したいと思います。
Postgres Toolkit is a collection of scripts and utilities that allows database administrators to perform complicated PostgreSQL management tasks with single commands. It focuses on frequent tasks like monitoring performance, checking configuration, and managing backups. The open source toolkit currently contains 13 scripts that work on Linux systems and PostgreSQL versions 9.0 through 9.4. It can be installed with a single curl command and includes utilities like pt-config to manage configuration files and pt-session-profiler to monitor long-running queries.
This document discusses streaming replication in PostgreSQL. It covers how streaming replication works, including the write-ahead log and replication processes. It also discusses setting up replication between a primary and standby server, including configuring the servers and verifying replication is working properly. Monitoring replication is discussed along with views and functions for checking replication status. Maintenance tasks like adding or removing standbys and pausing replication are also mentioned.
Red Hat Enterprise Linux 7 上でのDockerのステータス、使い方の解説と、Project Atomicをはじめとして、CentOS Atomic Host, RHEL Atomic Hostの解説。CentOS Atomic HostでKubernetesを使うチュートリアル。
2019/08/23 第21回 Tokyo Jazug Night
https://jazug.connpass.com/event/139300/
動画: https://www.youtube.com/watch?v=YMAV8aqb9pk
5. 導入の5ステップ
• ステップ1:ビルド&インストール
• ステップ2:データベースクラスタを初期化&複製
• ステップ3:マスターノードの設定
• ステップ4:スレーブノードの設定
• ステップ5:各ノードの起動&動作確認
Copyright 2010 Uptime Technologies LLC, All rights reserved.
6. ステップ1:ビルド&インストール
• まず、ソースをコンパイルし、インストールする。(バイナリパッケージを用
いる際は省略可)
– $ ./configure –-prefix=/usr/local/pgsql
– $ make ; make check
– $ su
– # make install
Copyright 2010 Uptime Technologies LLC, All rights reserved.