Posts

Showing posts with the label PostgreSQL pgadmin
Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

How to support pgAdmin III for Slony-I replication

pgAdmin III includes a frontend to Slony-I, the most popular master-slave replication solution for PostgreSQL. pgAdmin III makes maintaining the replication setup easier, and features health information to monitor the state of the cluster. Contents: Slony-I with pgAdmin III overview Slony-I administration with pgAdmin III: installation Prerequisites Overview Create cluster and first node Join additional nodes to cluster Upgrade node to new cluster software Creating paths and listens Create paths to other nodes Create listens to other nodes Creating sets and subscriptions Create replication set Define replicated table Define replicated sequence Subscribe a replication set Execute DDL scripts with Slony-I Slony-I tasks How to Setup Slony Replication - a master server is setup with two direct slaves How to Set Up Slony-I Replication for Postgres Plus

PostgreSQL pgAdmin III Full Notes

Introduction: pgAdmin III is a comprehensive  PostgreSQL database  design and management system for Unix and Windows systems. It is freely available under the terms of the The PostgreSQL Licence and may be redistributed provided the terms of the licence are adhered to. The project is managed by the The pgAdmin Development Team. This software was written as a successor to the original pgAdmin and pgAdmin II products, which though popular, had limitations in the design that prevented them being taken to the ‘next level’. pgAdmin III is written in C++ and uses the excellent  wxWidgets  (formerly wxWindows) cross platform toolkit. Connection to PostgreSQL is made using the native libpq library. Using pgAdmin III: This section explains how you can use pgAdmin to maintain your PostgreSQL databases. pgAdmin supports database server versions 7.3 and up. Versions older than 7.3 are not supported, please use pgAdmin II for these. Contents: pgAdm...

Manage PostgreSQL Using PhpPgAdmin On CentOS

Image
phpPgAdmin is a web based administration tool for managing PostgreSQL database, it is very similar in look of phpMyAdmin. If you have a work experience on phpMyAdmin, you wont take much time in finding the way to work with. This guide will help you to setup phpPgAdmin on CentOS 7 / RHEL 7. Installing phpPgAdmin: Before installing, take a look at how to install PostgreSQL on CentOS 7. If you have followed PostgrqSQL install, you do not need to steup EPEL. Here is the link to setup EPEL repository on CentOS 7. yum -y install phpPgAdmin php-pgsql httpd php Configuring phpPgAdmin: Edit  /etc/phpPgAdmin/config.inc.php file, we have to modify the admin file to enable the browser access. vi /etc/phpPgAdmin/config.inc.php Add the localhost in the following server parameter. $conf['servers'][0]['host'] = 'localhost'; If extra login security is true, then logins via phpPgAdmin with no password or certain usernames (pgsql, postgres, root, administrator) will...