This addresses the first problem in #25774 and also makes it easier for us in the future to absorb the follow-up steps into `sg`, because `sg` is then the first thing that's installed.
2.9 KiB
Quickstart step 5: Initialize your database
With Docker
The Sourcegraph server reads PostgreSQL connection configuration from the PG* environment variables.
The development server startup script as well as the docker compose file provide default settings, so it will work out of the box.
To initialize your database, you may have to set the appropriate environment variables before running the createdb command:
export PGUSER=sourcegraph PGPASSWORD=sourcegraph PGDATABASE=sourcegraph
createdb --user=sourcegraph --owner=sourcegraph --encoding=UTF8 --template=template0 sourcegraph
You can also use the PGDATA_DIR environment variable to specify a local folder (instead of a volume) to store the database files. See the dev/redis-postgres.yml file for more details.
This can also be spun up using sg run redis-postgres, with the following sg.config.override.yaml:
env:
PGHOST: localhost
PGPASSWORD: sourcegraph
PGUSER: sourcegraph
Without Docker
You need a fresh Postgres database and a database user that has full ownership of that database.
-
Create a database for the current Unix user
# For Linux users, first access the postgres user shell sudo su - postgres # For Mac OS users sudo su - _postgrescreatedb -
Create the Sourcegraph user and password
createuser --superuser sourcegraph psql -c "ALTER USER sourcegraph WITH PASSWORD 'sourcegraph';" -
Create the Sourcegraph database
createdb --owner=sourcegraph --encoding=UTF8 --template=template0 sourcegraph -
Configure database settings in your environment
The Sourcegraph server reads PostgreSQL connection configuration from the
PG*environment variables.Our configuration in
sg.config.yaml(we'll see whatsgis in the next step) sets values that work with the setup described here, but if you are using different values you can overwrite them, for example, in your~/.bashrc:export PGPORT=5432 export PGHOST=localhost export PGUSER=sourcegraph export PGPASSWORD=sourcegraph export PGDATABASE=sourcegraph export PGSSLMODE=disableYou can also use a tool like
envdiror a.dotenvfile to source these env vars on demand when you start the server.
More info
For more information about data storage, read our full PostgreSQL page.
Migrations are applied automatically.