postgresql/INSTALL

336 lines
12 KiB
Plaintext
Raw Normal View History

1996-10-30 07:01:55 +01:00
POSTGRESQL INSTALLATION INSTRUCTIONS
1996-08-19 00:14:33 +02:00
Copyright (c) 1996 Regents of the University of California
1996-10-30 07:01:55 +01:00
This directory contains the source and documentation for PostgreSQL
1997-01-03 07:08:21 +01:00
(version 6.0) PostgreSQL is a derivative of POSTGRES 4.2 (the last
1996-09-23 10:27:04 +02:00
release of the UC Berkeley research project). For copyright terms for
1996-10-30 07:01:55 +01:00
PostgreSQL, please see the file named COPYRIGHT. This version was
1996-09-23 10:27:04 +02:00
developed by a team of developers on the postgres developers mailing
list. Version 1 (through 1.01) was developed by Jolly Chen and Andrew
Yu.
1996-10-30 07:01:55 +01:00
REQUIREMENTS TO RUN POSTGRESQL
1996-09-23 10:27:04 +02:00
------------------------------
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
PostgreSQL has been tested on the following platforms:
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
aix IBM on AIX 3.2.5
alpha DEC Alpha AXP on OSF/1 2.0
BSD44_derived OSs derived from 4.4-lite BSD (NetBSD, FreeBSD)
bsdi BSD/OS 2.0, 2.01, 2.1
dgux DG/UX 5.4R3.10
hpux HP PA-RISC on HP-UX 9.0
i386_solaris i386 Solaris
irix5 SGI MIPS on IRIX 5.3
linux Intel x86 on Linux 1.2 and Linux ELF
(For non-ELF Linux, see LINUX_ELF below).
sparc_solaris SUN SPARC on Solaris 2.4
sunos4 SUN SPARC on SunOS 4.1.3
svr4 Intel x86 on Intel SVR4
ultrix4 DEC MIPS on Ultrix 4.4
1996-08-19 00:14:33 +02:00
PostgreSQL has known problems/bugs on the following platforms:
nextstep Motorola MC68K or Intel x86 on NeXTSTEP 3.2
1996-10-30 07:01:55 +01:00
PostgreSQL is also known to work on a number of other platforms that the
1996-09-23 10:27:04 +02:00
authors have not personally tested.
1996-08-19 00:14:33 +02:00
You should have at least 8 MB of memory and at least 30 MB of disk space to
hold the source, binaries, and user databases.
1997-01-03 07:08:21 +01:00
MIGRATING FROM POSTGRES VERSION 1.*
1996-10-30 07:01:55 +01:00
-----------------------------------
1996-09-23 10:27:04 +02:00
1997-01-03 07:08:21 +01:00
People migrating data from earlier releases must dump the data under
1.09 and reload them under 6.0. The pg_dump utility is designed to do
this. It is important you use 1.09 because earlier releases may not
have the proper copy format to load into the 6.0 database.
1996-09-23 10:27:04 +02:00
1996-10-30 07:01:55 +01:00
INSTALLING POSTGRESQL
1996-09-23 10:27:04 +02:00
---------------------
1996-10-30 07:01:55 +01:00
Installing PostgreSQL encompasses only installing the software on your system
1996-09-23 10:27:04 +02:00
so you can use it to access (or create or manipulate) databases. This
step does not include actually creating any database or configuring your
system to use it.
1997-03-02 03:09:19 +01:00
Before you start, if you are using GNU flex, you should ensure that you
are not using Version 2.5.3. If you have this version, you should either
change to 2.5.2 or 2.5.4 or apply the patch in doc/README.flex
1996-10-30 07:01:55 +01:00
To install PostgreSQL on UNIX platforms:
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
1. Unpack the source distribution into a source directory. We'll assume
1997-01-03 07:08:21 +01:00
"/usr/src/pgsql" in this discussion. This should be a new directory.
1996-09-23 10:27:04 +02:00
2. Set your current directory to the source directory:
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
cd /usr/src/pgsql
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
3. Build PostgreSQL:
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
If you're installing PostgreSQL on Ultrix 4.x or Linux, see the
1996-08-19 00:14:33 +02:00
porting notes at the end for additional packages that you need to install
1996-11-05 06:17:28 +01:00
before installing PostgreSQL.
1996-08-19 00:14:33 +02:00
If using Linux or Irix, you should also read the machine-specific FAQs.
1996-08-19 00:14:33 +02:00
Our Makefiles require GNU make (called gmake in this document) and
also assume that "install" accepts BSD options. The INSTALL
variable in the Makefiles is set to the BSD-compatible version of
install. On some systems, you will have to find a BSD-compatible
install to the location of this program. (eg. bsdinst, which comes
with the MIT X Window System distribution)
Customization can be done by editing src/Makefile.global. You may change
1996-10-30 07:01:55 +01:00
the various configuration options here, such as where the PostgreSQL
1996-08-19 00:14:33 +02:00
executable files are installed and where postgres looks for the database
directory.
PostgreSQL V6.0 also supports src/Makefile.custom. This is not supplied
with the distribution, but may be created to contain only the options
you wish to change in src/Makefile.global. This has the advantage that
it will not be overwritten when you install a new version of PostgreSQL
over the top of your current installation.
The configuration switches are fairly self-explanatory, but we
1996-08-19 00:14:33 +02:00
will go over some of the more commonly-changed options:
1996-11-05 06:17:28 +01:00
- PORTNAME specifies the platform on which PostgreSQL is being built.
This is set to UNDEFINED. You will need to change it to reflect
1996-09-23 10:27:04 +02:00
your platform. (sparc for SunOS 4.1.x, sparc_solaris for Solaris
1996-11-05 06:17:28 +01:00
2.4, ultrix4 for Ultrix 4.4, and hpux for HP-UX 9.0, etc.)
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
- SRCDIR specifies where the source files are located. (defaults to
$(POSTGRESDIR)/src.)
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
- POSTGRESDIR specifies the top-level directory where PostgreSQL
1996-09-23 10:27:04 +02:00
binaries, header files, libraries, and databases are installed.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
- USE_READLINE specifies whether you want to use the GNU readline and
history libraries for the psql interactive frontend program. GNU
1996-10-30 07:01:55 +01:00
readline is not supplied with PostgreSQL and can be found in the
1996-09-23 10:27:04 +02:00
usual ftp sites for GNU software.
1996-08-19 00:14:33 +02:00
In the simplest case, you would create src/Makefile.custom containing
just the line:
PORTNAME= portname
1996-08-19 00:14:33 +02:00
(where you replace portname with the name of the system you are using).
Even easier is to enter the src directory and run the customize shell
script which will prompt you with various questions and create
Makefile.custom for you:
1996-08-19 00:14:33 +02:00
% cd src
% customize
After editing src/Makefile.global or src/Makefile.custom, you are ready
to compile PostgreSQL (it takes about 10 minutes on a 133Mhz Pentium
running linux):
% cd src ( if you're not already there )
1996-08-19 00:14:33 +02:00
% gmake
1997-01-03 07:08:21 +01:00
The gmake ultimately issues the message "All of PostgreSQL is
1996-08-19 00:14:33 +02:00
successfully made. Ready to install." If you don't get that, the make
failed, and there should be error messages at the end detailing why.
1996-10-30 07:01:55 +01:00
4. Install PostgreSQL
1996-09-23 10:27:04 +02:00
Installing just means placing all the files built in the previous step
into their live locations on your system.
% gmake install
This will narrate all the files being installed. You should watch and
be sure the files are going to reasonable places and confirm for yourself
that they ended up where they belong.
Any error messages indicate something is wrong and you probably have to
1996-10-30 07:01:55 +01:00
correct it before PostgreSQL will work.
1996-09-23 10:27:04 +02:00
HOW TO CREATE A DATABASE SYSTEM
-------------------------------
Once you have Postgres installed, you'll need at least one database system
on which to operate. A database system is a collection of databases that
are used together and fall under a single authority. You can have as many
database systems as you want on a single unix system.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
You select a unix user to be the "postgres superuser" for a database
system and that user, for one thing, owns all the unix files that hold
all the data for that database system. It is usually a good idea to create
a user for the sole purpose of being a postgres superuser.
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
WARNING: PostgreSQL is not secure. Anyone who can connect to a database
1996-09-23 10:27:04 +02:00
system can easily assume all the unix privileges of its Postgres
superuser. The simplest way is by creating and running a C language
function. There are plans to remedy this in future developent.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
The program initdb (part of Postgres) is what initializes (creates) a
database system. Initdb uses the defaults specified in Makefile.global
or Makefile.custom. See the man page for initdb for more information.
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
% initdb --pgdata=/usr/local/pgsql/data --pglib=/usr/local/pgsql/lib
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
By default, the user issuing the initdb command becomes the Postgres
superuser, and only the unix superuser can specify any other user as the
Postgres superuser.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
Setting up Permissions
----------------------
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
The first thing you should do after creating a database system is set up
the permissions for connecting to the database. These are kept in the
1997-01-10 22:22:02 +01:00
file pg_hba.conf in the lib directory. Initdb creates a sample version of
1996-09-23 10:27:04 +02:00
this file, which contains comments telling you how to set it up.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
The Postmaster Daemon
---------------------
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
Finally, in order to use the database system, you'll need to have a
postmaster daemon running. There is one postmaster process per database
system. The postmaster runs the program "postgres" and must run as the
Postgres superuser. See the postgres man page.
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
So, for example, you can login as the Postgres superuser and issue the
command:
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
$ nohup postmaster -D/usr/local/pgsql/data >server.log 2>&1 &
1996-09-23 10:27:04 +02:00
1997-01-03 07:08:21 +01:00
This says to run the postmaster against the database system created
above.
1996-09-23 10:27:04 +02:00
This is a good daemon to start via system startup scripts, using su (be
careful NOT to run the postmaster as the unix superuser by mistake).
1996-10-30 07:01:55 +01:00
TESTING POSTGRESQL
1996-09-23 10:27:04 +02:00
------------------
We suggest you run the regression tests to make sure the release was
installed successfully and works as designed in your environment. The
regression tests can be found in src/test/regress. (see
src/test/regress/README for more details)
% cd /usr/src/pgsql/src/test/regress
1996-08-19 00:14:33 +02:00
% gmake all runtest
1997-01-03 07:08:21 +01:00
This will run a whole slew of regression tests and might take an hour
1996-09-23 10:27:04 +02:00
to run. When it's done, the output is in the file obj/regress.out. You
can compare this to a sample run that we supply in the file
sample.regress.out. (You should get roughly the same output except for
some pathnames.)
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
% diff expected.out regress.out
1996-09-23 10:27:04 +02:00
1996-10-30 07:01:55 +01:00
PLAYING WITH POSTGRESQL
1996-09-23 10:27:04 +02:00
-----------------------
1996-08-19 00:14:33 +02:00
1996-10-30 07:01:55 +01:00
After PostgreSQL is installed, a database system is created, a postmaster
1996-09-23 10:27:04 +02:00
daemon is running, and the regression tests have passed, you'll want to
1996-10-30 07:01:55 +01:00
see PostgreSQL do something. That's easy. Invoke the interactive interface
to PostgreSQL, psql, and start typing SQL:
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
$ psql template1
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
(psql has to open a particular database, but at this point the only one
that exists is the template1 database, which always exists. We will connect
to it only long enough to create another one and switch to it).
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
The response from psql is:
1996-08-19 00:14:33 +02:00
type \? for help on slash commands
type \q to quit
type \g or terminate with semicolon to execute query
1996-09-23 10:27:04 +02:00
You are currently connected to the database: template1
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
template1=>
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
Create the database foo:
template1=> CREATE DATABASE FOO;
INSERT 773248
(Don't ever forget those SQL semicolons. Psql won't execute anything until it
sees the semicolon).
template1=> \c foo
closing connection to database: template1
connecting to new database: foo
(\ commands aren't SQL, so no semicolon. Use \? to see all the \ commands).
template1=> CREATE TABLE bar (column1 int4, column2 char16);
CREATE
template1=> \d bar
...
You get the idea.
QUESTIONS? BUGS? FEEDBACK?
--------------------------
1996-08-19 00:14:33 +02:00
1996-09-23 10:27:04 +02:00
First, please read the Frequently Asked Questions and answers in the file
called FAQ.
1996-08-19 00:14:33 +02:00
1997-01-03 07:08:21 +01:00
If you still have questions, please send them to:
questions@postgreSQL.org
1996-08-19 00:14:33 +02:00
If you have a bug report to make, please send a filled out version of
the file named "bug.template" to bugs@postgreSQL.org.
1996-08-19 00:14:33 +02:00
If you would like to help out with the development and maintenance of
1996-10-30 07:01:55 +01:00
PostgreSQL, send subscribe to the developers mailing list. See
1996-08-19 00:14:33 +02:00
README.support for more information
----------------------------------------------------------------------
Porting Notes:
-------------
Ultrix4.x:
You need to install the libdl-1.1 package since Ultrix 4.x doesn't
have a dynamic loader. It's available in
s2k-ftp.CS.Berkeley.EDU:pub/personal/andrew/libdl-1.1.tar.Z
Linux:
The linux port defaults to the ELF binary format. (Note that if you're
using ELF, you don't need dld because you'll be using the dl library
that comes with Linux ELF instead.)
To compile on non-ELF Linux, comment out the LINUX_ELF line in
src/mk/port/postgres.mk.linux. Also, the dld library MUST be obtained
and installed on the system. It enables dynamic link loading capability
to the postgres port. The dld library can be obtained from the sunsite
linux distributions. The current name is dld-3.2.5.
(Jalon Q. Zimmerman
<sneaker@powergrid.electriciti.com> 5/11/95)
To compile with flex, you need a recent version (2.5.2 or
later). Otherwise, you will get a 'yy_flush_buffer' undefined error.
1996-10-30 07:01:55 +01:00
Note, however, that flex v2.5.3 has a bug. See the FAQs.
1996-08-19 00:14:33 +02:00
BSD/OS:
For BSD/OS 2.0 and 2.01, you will need to get flex version 2.5.2
as well as the GNU dld library. Flex version 2.5.3 has a known bug.
NeXT:
The NeXT port was supplied by Tom R. Hageman <tom@basil.icce.rug.nl>.
It requires a SysV IPC emulation library and header files for
shared libary and semaphore stuff. Tom just happens to sell such
a product so contact him for information. He has also indicated that
1996-10-30 07:01:55 +01:00
binary releases of PostgreSQL for NEXTSTEP will be made available to
1996-08-19 00:14:33 +02:00
the general public. Contact Info@RnA.nl for information.