Show More
@@ -1,109 +1,95 b'' | |||
|
1 | 1 | .. _known-issues: |
|
2 | 2 | |
|
3 | 3 | Known Issues |
|
4 | 4 | ============ |
|
5 | 5 | |
|
6 | Subversion Issues | |
|
7 | ----------------- | |
|
8 | ||
|
9 | Limited |svn| support has been achieved for this release, | |
|
10 | |release|. The following known issues are in development for improvement. | |
|
11 | ||
|
12 | * |svn| |repo| creation: | |
|
13 | Terminating the VCS Server during remote importation of |svn| |repos| leaves | |
|
14 | the the process still running in the background. | |
|
15 | ||
|
16 | * |svn| |repo| checkin/checkout: | |
|
17 | |svn| cloning support is not enabled by default. Please contact support if | |
|
18 | you want it enabled. | |
|
19 | ||
|
20 | 6 | Windows Upload |
|
21 | 7 | -------------- |
|
22 | 8 | |
|
23 | 9 | There can be an issue with uploading files from web interface on Windows, |
|
24 | 10 | and afterwards users cannot properly clone or synchronize with the repository. |
|
25 | 11 | |
|
26 | 12 | Early testing shows that often uploading files via HTML forms on Windows |
|
27 | 13 | includes the full path of the file being uploaded and not the name of the file. |
|
28 | 14 | |
|
29 | 15 | Old Format of Git Repositories |
|
30 | 16 | ------------------------------ |
|
31 | 17 | |
|
32 | 18 | There is an issue when trying to import old |git| format |repos| into recent |
|
33 | 19 | versions of |RCE|. This issue can occur when importing from external |git| |
|
34 | 20 | repositories or from older versions of |RCE| (<=2.2.7). |
|
35 | 21 | |
|
36 | 22 | To convert the old version into a current version, clone the old |
|
37 | 23 | |repo| into a local machine using a recent |git| client, then push it to a new |
|
38 | 24 | |repo| inside |RCE|. |
|
39 | 25 | |
|
40 | 26 | |
|
41 | 27 | VCS Server Memory Consumption |
|
42 | 28 | ----------------------------- |
|
43 | 29 | |
|
44 | 30 | The VCS Server cache grows without limits if not configured correctly. This |
|
45 | 31 | applies to |RCE| versions prior to the 3.3.2 releases, as 3.3.2 |
|
46 | 32 | shipped with the optimal configuration as default. See the |
|
47 | 33 | :ref:`vcs-server-maintain` section for details. |
|
48 | 34 | |
|
49 | 35 | To fix this issue, upgrade to |RCE| 3.3.2 or greater, and if you discover |
|
50 | 36 | memory consumption issues check the VCS Server settings. |
|
51 | 37 | |
|
52 | 38 | Newer Operating system locales |
|
53 | 39 | ------------------------------ |
|
54 | 40 | |
|
55 | 41 | |RCC| has a know problem with locales, due to changes in glibc 2.27+ which affects |
|
56 | 42 | the local-archive format, which is now incompatible with our used glibc 2.26. |
|
57 | 43 | |
|
58 | 44 | Mostly affected are: |
|
59 | 45 | - Fedora 23+ |
|
60 | 46 | - Ubuntu 18.04 |
|
61 | 47 | - CentOS / RHEL 8 |
|
62 | 48 | |
|
63 | 49 | To work around this problem, you need set path to ``$LOCAL_ARCHIVE`` to the |
|
64 | 50 | locale package in older pre glibc 2.27 format, or set `LC_ALL=C` in your enviroment. |
|
65 | 51 | |
|
66 | 52 | To use the pre 2.27 locale-archive fix follow these steps: |
|
67 | 53 | |
|
68 | 54 | 1. Download the pre 2.27 locale-archive package |
|
69 | 55 | |
|
70 | 56 | .. code-block:: bash |
|
71 | 57 | |
|
72 | 58 | wget https://dls.rhodecode.com/assets/locale-archive |
|
73 | 59 | |
|
74 | 60 | |
|
75 | 61 | 2. Point ``$LOCAL_ARCHIVE`` to the locale package. |
|
76 | 62 | |
|
77 | 63 | .. code-block:: bash |
|
78 | 64 | |
|
79 | 65 | $ export LOCALE_ARCHIVE=/home/USER/locale-archive # change to your path |
|
80 | 66 | |
|
81 | 67 | This should be added *both* in `enviroment` variable of `~/.rccontrol/supervisor/supervisord.ini` |
|
82 | 68 | e.g |
|
83 | 69 | |
|
84 | 70 | ``` |
|
85 | 71 | [supervisord] |
|
86 | 72 | environment = HOME=/home/user/rhodecode,LOCALE_ARCHIVE=/YOUR-PATH/locale-archive` |
|
87 | 73 | ``` |
|
88 | 74 | |
|
89 | 75 | and in user .bashrc/.zshrc etc, or via a startup script that |
|
90 | 76 | runs `rccontrol self-init` |
|
91 | 77 | |
|
92 | 78 | If you happen to be running |RCC| from systemd, use the following |
|
93 | 79 | example to pass the correct locale information on boot. |
|
94 | 80 | |
|
95 | 81 | .. code-block:: ini |
|
96 | 82 | |
|
97 | 83 | [Unit] |
|
98 | 84 | Description=Rhodecode |
|
99 | 85 | After=network.target |
|
100 | 86 | |
|
101 | 87 | [Service] |
|
102 | 88 | Type=forking |
|
103 | 89 | User=scm |
|
104 | 90 | Environment="LOCALE_ARCHIVE=/YOUR-PATH/locale-archive" |
|
105 | 91 | ExecStart=/YOUR-PATH/.rccontrol-profile/bin/rccontrol-self-init |
|
106 | 92 | |
|
107 | 93 | [Install] |
|
108 | 94 | WantedBy=multi-user.target |
|
109 | 95 |
General Comments 0
You need to be logged in to leave comments.
Login now