OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openproject/docs/installation-and-operations/operation/reconfiguring/README.md

40 lines
1.6 KiB

5 years ago
---
sidebar_navigation:
title: (Re)configuring
priority: 10
5 years ago
---
# (Re)configuring OpenProject
## Packaged installation
For packaged installations, you can restart the configuration process by issuing the following command on the server where OpenProject runs:
5 years ago
```bash
5 years ago
sudo openproject reconfigure
```
This will restart the installation wizard, and allow you to modify any of the choices that you previously selected. If a configuration option doesn't need to be modified, just hit `ENTER` to proceed to the next screen.
The wizard configuration is stored in `/etc/openproject/installer.dat`.
The wizard will automatically set environment variables to be used by OpenProject. Those variables can be manipulated with the CLI tool that ships with OpenProject:
* `sudo openproject config` will display the list of environment variables set.
* `sudo openproject config:get KEY` allows you to get the value of single environment variable.
* `sudo openproject config:set KEY VALUE` allows you to set a new value for a single environment variable.
5 years ago
## Docker installation
For the Compose-based docker installation, you should update the `docker-compose.yml` file and add any [environment variable](../../configuration/environment) that you may require. Docker Compose supports [file overrides](https://docs.docker.com/compose/extends/) so you may also want to use that. Then simply issue the following command:
```
docker-compose up -d
```
For all-in-one docker installations, you should update the environment file given to the `--env-file` docker option, and issue the following command:
5 years ago
```bash
5 years ago
docker restart openproject
```