- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已使用描述的方法 here 在 Azure Ubuntu 16.04 实例上安装了 Apache2/Subversion v1.9.3 .
我已在 sites-available/[sitename].conf
中配置了 SSL,并且能够使用 Firefox 和 TortoiseSvn 进行远程连接。
如果我在服务器的本地文件系统上创建一个存储库,一切都会正常工作 - 我可以使用 TortoiseSvn 将文件导入到存储库,不会出现错误。
如果我将存储库替换为托管在 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 报告提交后 FS 处理出现错误:无法打开rep-cache 数据库
/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 的内容。
存储库目录中文件的权限似乎是合理的......尽管有一些零大小的文件:
-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
但是,如果模块加载顺序存在问题,我想无论存储库是否位于本地或已安装的文件系统上,都会出现问题。
这是在 Azure 中存储 Subversion 存储库数据的正确方法吗?
任何有关如何更好地诊断/解决问题的见解或指导都将受到欢迎。
最佳答案
更多测试表明问题在于使用 Azure 文件服务存储 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磁盘。然后可以按照上面的方式创建存储库,一切都会按预期进行。
关于azure - Subversion 提交后错误 : Couldn't open rep-cache database,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50544663/
OpenAL.org && 创意开发网站已关闭。我选择替代版本 OpenAL Soft .我很担心,因为在 OpenAL Soft 的二进制安装中我找不到 alut.h header 。 alut.h
我使用 Android Studio 已经有一段时间了,但有一天应用程序突然出错了。当我尝试单击我的目录以查找要导入或打开的文件时,应用程序变得异常缓慢并且根本没有响应。当我最终成功切换到存储我的文件
自 Firefox 4 以来,这似乎是一个奇怪的功能变化。在使用 window.open() 打开一个窗口后,当用鼠标中键单击打开的窗口中的链接时(或右键单击并选择“在新窗口中打开”选项卡') 导致链
我无法从 Open::URI 的 rdoc 中得知当我这样做时返回的是什么: result = open(url) URL 返回 XML,但我如何查看/解析 XML? 最佳答案 open 返回一个 I
经常开发asp但对于细致的说法,真实不太清楚,这里简单的介绍下。 一般情况下 读取数据都是用rs.open sql,conn,1,1 修改数据:rs.open sql,conn,1,3 删除
关于 pathlib 标准库中的模块,是 path.open() 方法只是内置 open() 的“包装器”功能? 最佳答案 如果您阅读了 source code的 pathlib.Path.open你
我想将 Open Liberty 运行时的语言更改为 en_US从 Eclipse IDE 中,但我不知道如何。 也尝试使用 JVM 参数的首选项来设置它,但它没有用。 -Duser.language
这是我所拥有的: 参数“opener”未在可能的函数调用参数中列出。这是 PyCharm 错误还是其他原因? PyCharm 2018.3.5 社区版,Windows 7 上的 Python 3.6.
我正在使用 Tinkerpop 的 GraphFactory.open(Configuration 配置) Java 命令来访问 Neo4j 数据库。 一个最低限度的工作示例是: Configurat
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 我没有使用过 with 语句,但
我正在玩 python 3.5 中的 open 函数。我不明白 opener 参数(最后一个参数)在 open 函数中的用法。根据 python 文档:可以通过将可调用对象作为打开器传递来使用自定义打
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 5 年前。 Improve th
我试图用 Python 来做一些模拟 3D 声音的工作。我试图运行此代码(答案中提供):Python openAL 3D sound类似,两次都收到: ModuleNotFoundError: No
我一直认为 open 和 io.open 可以互换。 显然不是,如果我相信这个片段: import ctypes, io class POINT(ctypes.Structure): _fie
这个问题在这里已经有了答案: What's the difference between io.open() and os.open() on Python? (7 个答案) 关闭 9 年前。 我是
我正在尝试更好地了解 WCF 的一些内部工作原理。我已经做了相当多的环顾四周,但我无法找到关于 ChannelFactory.Open() 与 IClientChannel.Open() 相比的明确解
这个问题在这里已经有了答案: What is the python "with" statement designed for? (11 个答案) 关闭 7 年前。 我知道有很多关于在 python
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界. 这篇CFSDN的博客文章adodb.recordset.open(rs.open)方法参数详解由
不久前我遇到了一个interesting security hole Link 看起来足够无害,但有一个漏洞,因为默认情况下,正在打开的页面允许打开的页面通过 window.opener 回调到它。有
这在我的应用程序上运行良好,但由于某种原因我无法让它在这里正常工作。无论如何,我的问题是,当我单击列表标题时,我想关闭之前打开的列表标题并仅保留事件的列表标题打开。目前它会打开我点击的所有内容,但也会
我是一名优秀的程序员,十分优秀!