Files
SCM-Manager/docs/en/faq.md

47 lines
1.6 KiB
Markdown
Raw Normal View History

---
title: Frequently Asked Questions
---
2020-03-09 08:01:43 +01:00
### What are the username and the password in the default installation?
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
### Where does SCM-Manager store its configuration, data and repositories?
2020-03-09 08:01:43 +01: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.
Please have a look at the [documentation](../administration/basedirectory/).
2020-03-09 08:01:43 +01:00
### How can I change the SCM-Manager home directory?
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?
The location of the log files depends on your operation system and the type of installation.
Please have a look at the [documentation](../administration/logging/).
2020-03-09 08:01:43 +01:00
### How do I enable trace logging?
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" />
```
After changing the configuration, SCM-Manager must be restarted.
2020-03-09 08:01:43 +01:00
### How do I install plugins?
Find the plugin you like to install at [plugins](/plugins#categories) and follow the installation instructions on the install page of the plugin.
### How can I import my existing (git|mercurial|subversion) repository
Please have a look on [these detailed instructions](../import/).