You are on page 1of 7

TOP TECHNOLOGY INSTITUTE ESCARCEGA

Computer Systems Engineering

SUBJECT Database administration

Manual installation of a database manager

MEMBERS: Mario Alberto Chan Balan Rub Esmeralda Espinoza Martnez David Montiel Ramrez Rigo Alberto Rodrguez Mex Daniel Magaa Rodrguez Jazmn Montiel Ramrez

ISMA- 6 18-04-2013

INDEX

Introduction ---------------------------------------------------------------------------3

Requirements ------------------------------------------------------------------------4

Installation Development -------------------------------------------------------5

conclusion --------------------------------------------------------------------------7

INTRODUCTION

This manual is not intended as a comprehensive guide postgresql installation. Therefore the aim is not to cover all possibilities. Fundamentally is designed for home users who wish to begin practicing with the database management system (DBMS). The facility discussed is the postgresql version for Windows. So it is assumed that this is the operating system installed.

REQUIREMENTS FOR INSTALLATION PostgreSQL DBMS

A 64 MB RAM, 90 MB HDD, Intel 486 or higher processor (Basically any microprocessor which runs some kind of Unix, Linux, NetBSD, Windows xp,). These are the minimum course does not guarantee that it will be very Quick, The faster you want and want to store more data, have to aim higher with hardware.

DBMS INFORMATION PostgreSQL is an object-oriented relational DBMS and free, released under the BSD license. Like many open source projects, PostgreSQL development is not handled by a company and / or person, but is run by a community of developers who work selflessly altruistic, free and / or supported by commercial organizations. This community is called the PGDG (PostgreSQL Global Development Group) Features High turnout Using a system called MVCC (Multiversion Concurrent access, for its acronym in English) while PostgreSQL allows a process writes to a table, others from accessing the same table without locks. Each user gets a consistent view of the last thing that made him commit. This approach is superior to the use of blocks or rows per table common to other bases, eliminating the need for the use of explicit locks .... Wide variety of native types PostgreSQL natively provides support for: arbitrary precision numbers. Text of unlimited length. Shapes (with a variety of related functions). IP address (IPv4 and IPv6). Blocks CIDR-style addressing. MAC Addresses. Arrays. Additionally, users can create their own data types, which can be completely indexable by PostgreSQL GiST infrastructure. Examples are data types created by the project GIS PostGIS.

INSTALACION DE POSTGRESQL EN FEDORA 16

To begin the installation of postgresql First thing we have to do is open the terminal and start as root su And asked for their password To Install Postgres stick or write these lines in the console yum -y install postgresql postgresql-libs postgresql-contrib postgresql-server postgresql-docs Once installed we start the services, I should say OK if everything is correct for this we write or paste this into the console. service postgresql initdb service postgresql start Once started postgres user password change in console Postgres write or paste these lines passwd postgres Now start Postgres. su postgres Now began the service ./etc/init.d/postgresql start Must display a prompt "bash-4.1 $", now we Postgres typing or pasting in the console is online psql Proceed to change the password, where "PASSWORD" is the same as put up, write this line in the console. ALTER USER postgres WITH PASSWORD 'CONTRASEA'; If all went well you should see "ALTER ROLE".

We left Postgres with the following line \q exit

CONCLUSION We conclude that postgresql is very easy to install, since the default settings and brings them to the user as it has the option to modify, if desired, other than it has a graphical interface very easy to use.

You might also like