2020-05-06 15:41:14 +02:00
|
|
|
---
|
|
|
|
|
title: Frequently Asked Questions
|
|
|
|
|
---
|
2020-03-09 08:01:43 +01:00
|
|
|
|
|
|
|
|
### What are the username and the password in the default installation?
|
|
|
|
|
|
2021-08-24 15:05:23 +02:00
|
|
|
On first startup, you have to create the initial administration user.
|
|
|
|
|
Learn more at [first startup](../first-startup/).
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2020-06-11 07:16:31 +02:00
|
|
|
### Where does SCM-Manager store its configuration, data and repositories?
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2020-06-11 07:16:31 +02:00
|
|
|
All data which is created by SCM-Manager, is stored in the SCM-Manager base directory.
|
|
|
|
|
The location of the base directory depends on your type of installation.
|
2020-06-11 07:43:27 +02:00
|
|
|
Please have a look at the [documentation](../administration/basedirectory/).
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2020-03-26 10:57:31 +01:00
|
|
|
### How can I change the SCM-Manager home directory?
|
|
|
|
|
|
2020-06-11 07:43:27 +02:00
|
|
|
There are several ways to change the location of the home directory: [documentation](../administration/basedirectory/#change-base-directory-location)
|
2020-03-09 08:01:43 +01:00
|
|
|
|
|
|
|
|
### Where does SCM-Manager stores it log files?
|
|
|
|
|
|
2020-06-11 07:16:31 +02:00
|
|
|
The location of the log files depends on your operation system and the type of installation.
|
2020-06-11 07:43:27 +02:00
|
|
|
Please have a look at the [documentation](../administration/logging/).
|
2020-03-09 08:01:43 +01:00
|
|
|
|
|
|
|
|
### How do I enable trace logging?
|
|
|
|
|
|
2020-06-11 07:43:27 +02:00
|
|
|
Find the location of your `logging.xml` in the [documentation](../administration/logging/#configuration) and change the following line from:
|
2020-03-09 08:01:43 +01:00
|
|
|
|
2020-03-31 17:28:30 +02:00
|
|
|
```xml
|
|
|
|
|
<logger name="sonia.scm" level="INFO" />
|
|
|
|
|
```
|
2020-03-09 08:01:43 +01:00
|
|
|
to:
|
|
|
|
|
|
2020-03-31 17:28:30 +02:00
|
|
|
```xml
|
|
|
|
|
<logger name="sonia.scm" level="TRACE" />
|
|
|
|
|
```
|
|
|
|
|
|
2020-06-11 07:16:31 +02:00
|
|
|
After changing the configuration, SCM-Manager must be restarted.
|
2020-03-09 08:01:43 +01:00
|
|
|
|
|
|
|
|
### How do I install plugins?
|
|
|
|
|
|
2020-06-11 07:16:31 +02:00
|
|
|
Find the plugin you like to install at [plugins](/plugins#categories) and follow the installation instructions on the install page of the plugin.
|
2020-08-02 12:35:55 +02:00
|
|
|
|
2020-08-03 07:19:50 +02:00
|
|
|
### How can I import my existing (git|mercurial|subversion) repository
|
2020-08-02 12:35:55 +02:00
|
|
|
|
2021-08-24 15:05:23 +02:00
|
|
|
Please have a look on [these detailed instructions](../import/).
|