kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
34 lines
1.2 KiB
34 lines
1.2 KiB
5 years ago
|
---
|
||
|
sidebar_navigation:
|
||
|
title: (Re)configuring
|
||
5 years ago
|
priority: 10
|
||
5 years ago
|
---
|
||
|
|
||
|
# (Re)configuring OpenProject
|
||
|
|
||
|
## Packaged installation
|
||
|
|
||
5 years ago
|
For packaged installations, you can restart the configuration process by issuing the following command on the server where OpenProject runs:
|
||
5 years ago
|
|
||
5 years ago
|
```bash
|
||
5 years ago
|
sudo openproject reconfigure
|
||
|
```
|
||
|
|
||
5 years ago
|
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 docker-based installations, you should update the environment file passed to the `--env-file` docker option, and issue the following command:
|
||
|
|
||
5 years ago
|
```bash
|
||
5 years ago
|
docker restart openproject
|
||
|
```
|