Subversion post-commit错误:无法打开rep-cache数据库

问题描述 投票:1回答:2

我使用here描述的方法在Azure Ubuntu 16.04实例上安装了Apache2 / Subversion v1.9.3。

我在sites-available/[sitename].conf中配置了SSL,并且能够使用Firefox和TortoiseSvn远程连接。

如果我在服务器的本地文件系统上创建一个repo,一切都很完美 - 我可以使用TortoiseSvn将文件导入到repo而不会出错。

如果我用Azure文件服务存储上托管的存储库替换存储库,则安装有:

sudo mount -t cifs //[].file.core.windows.net/svn /mnt/svn -o vers=3.0,username=[],password=[],dir_mode=0777,file_mode=0777,sec=ntlmssp,uid=www-data,gid=www-data

... Tortoise SVN报道post commit FS processing had error: Couldn't open rep-cache database

/var/log/apache/error.log包含以下内容:

[Sat May 26 15:12:00.994705 2018] [:error] [pid 11577:tid 140074997974784] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] Couldn't open rep-cache database
[Sat May 26 15:12:00.994745 2018] [:error] [pid 11577:tid 140074997974784] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] -Couldn't perform atomic initialization
[Sat May 26 15:12:00.994749 2018] [:error] [pid 11577:tid 140074997974784] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] -sqlite[S5]: database is locked, executing statement 'CREATE TABLE rep_cache (   hash TEXT NOT NULL PRIMARY KEY,   revision INTEGER NOT NULL,   offset INTEGER NOT NULL,   size INTEGER NOT NULL,   expanded_size INTEGER NOT NULL   ); PRAGMA USER_VERSION = 1; '
[Sat May 26 15:12:02.713630 2018] [:error] [pid 11577:tid 140075207550720] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] Couldn't open rep-cache database
[Sat May 26 15:12:02.713658 2018] [:error] [pid 11577:tid 140075207550720] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] -Couldn't perform atomic initialization
[Sat May 26 15:12:02.867911 2018] [:error] [pid 11577:tid 140075207550720] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] Couldn't open rep-cache database
[Sat May 26 15:12:02.867922 2018] [:error] [pid 11577:tid 140075207550720] (20014)Internal error (specific information not available): [client 77.144.98.30:55324] -Couldn't perform atomic initialization
[Sat May 26 15:12:03.801075 2018] [:error] [pid 11577:tid 140075207550720] (20014)Internal error (specific information not available): commit of r1 succeeded, but an error occurred after the commit: 'post commit FS processing had error:\nCouldn't open rep-cache database'

This问题似乎解决了同样的问题,但是我不清楚是否可以在Apache2中修改模块加载顺序,因为模块配置基于mods-enabled/*.load的内容。

repo目录中文件的权限似乎是合理的......虽然有一些零大小的文件:

-rwxrwxrwx 1 www-data www-data     2 May 26 15:12 current
-rwxrwxrwx 1 www-data www-data    41 May 26 15:08 format
-rwxrwxrwx 1 www-data www-data 10178 May 26 15:08 fsfs.conf
-rwxrwxrwx 1 www-data www-data     5 May 26 15:08 fs-type
-rwxrwxrwx 1 www-data www-data     2 May 26 15:08 min-unpacked-rev
-rwxrwxrwx 1 www-data www-data     0 May 26 15:11 rep-cache.db
-rwxrwxrwx 1 www-data www-data     0 May 26 15:12 rep-cache.db-journal
drwxrwxrwx 2 www-data www-data     0 May 26 15:08 revprops
drwxrwxrwx 2 www-data www-data     0 May 26 15:08 revs
drwxrwxrwx 2 www-data www-data     0 May 26 15:08 transactions
-rwxrwxrwx 1 www-data www-data     2 May 26 15:11 txn-current
-rwxrwxrwx 1 www-data www-data     0 May 26 15:08 txn-current-lock
drwxrwxrwx 2 www-data www-data     0 May 26 15:08 txn-protorevs
-rwxrwxrwx 1 www-data www-data    74 May 26 15:08 uuid
-rwxrwxrwx 1 www-data www-data     0 May 26 15:08 write-lock

但是,如果模块加载顺序出现问题,我会想象无论repo是在本地还是已安装的文件系统上,都会出现问题。

这是在Azure中存储subversion存储库数据的正确方法吗?

有关如何更好地诊断/解决问题的任何见解或指导将是最受欢迎的。

azure svn apache2 ubuntu-16.04 azure-virtual-machine
2个回答
1
投票

还有一些测试表明,问题在于使用Azure Fileservice来存储subversion存储库数据。

setup的一个过程是创建回购:

sudo svnadmin create /path/to/repo
sudo chown -R www-data:www-data /path/to/repo
sudo chmod -R g+ws /path/to/repo

当在本地(ext4?)驱动器上执行此操作时,db目录看起来像这样:

-rw-rwSr-- 1 www-data www-data     2 May 26 18:56 current
-r--rwSr-- 1 www-data www-data    41 May 26 18:54 format
-rw-rwSr-- 1 www-data www-data 10178 May 26 18:54 fsfs.conf
-rw-rwSr-- 1 www-data www-data     5 May 26 18:54 fs-type
-rw-rwSr-- 1 www-data www-data     2 May 26 18:54 min-unpacked-rev
-rw-rwSr-- 1 www-data www-data  3072 May 26 18:56 rep-cache.db
-rw-rw-r-- 1 www-data www-data     0 May 26 18:56 rep-cache.db-journal
drwxrwsr-x 3 www-data www-data  4096 May 26 18:54 revprops
drwxrwsr-x 3 www-data www-data  4096 May 26 18:54 revs
drwxrwsr-x 2 www-data www-data  4096 May 26 18:56 transactions
-rw-rwSr-- 1 www-data www-data     2 May 26 18:56 txn-current
-rw-rwSr-- 1 www-data www-data     0 May 26 18:54 txn-current-lock
drwxrwsr-x 2 www-data www-data  4096 May 26 18:56 txn-protorevs
-rw-rwSr-- 1 www-data www-data    74 May 26 18:54 uuid
-rw-rwSr-- 1 www-data www-data     0 May 26 18:54 write-lock

...带有s / S标志的内容与Azure文件服务上的目录内容不同(如问题所示)。不是Linux专家,我认为这些是features not supported by the Azure file service

我的解决方案是create and attach a data disk to the VM,然后partition, format and mount磁盘。然后可以如上所述创建回购,一切都按预期工作。


0
投票

这是sqlite DB的限制。随着回购的规模越来越大,你会看到这一点。我通过将我的svn repo分成更小的块来修复它。

© www.soinside.com 2019 - 2024. All rights reserved.