惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Simon Willison's Weblog
Simon Willison's Weblog
G
Google Developers Blog
Spread Privacy
Spread Privacy
I
InfoQ
V
V2EX
S
Schneier on Security
小众软件
小众软件
C
CERT Recently Published Vulnerability Notes
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Stack Overflow Blog
Stack Overflow Blog
T
Threat Research - Cisco Blogs
L
Lohrmann on Cybersecurity
Recent Announcements
Recent Announcements
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Attack and Defense Labs
Attack and Defense Labs
云风的 BLOG
云风的 BLOG
The Hacker News
The Hacker News
S
SegmentFault 最新的问题
C
Cybersecurity and Infrastructure Security Agency CISA
NISL@THU
NISL@THU
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
Latest news
Latest news
S
Secure Thoughts
Project Zero
Project Zero
MongoDB | Blog
MongoDB | Blog
I
Intezer
Security Latest
Security Latest
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
N
Netflix TechBlog - Medium
V2EX - 技术
V2EX - 技术
量子位
T
Threatpost
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
T
Tor Project blog
A
Arctic Wolf
Microsoft Security Blog
Microsoft Security Blog
T
The Exploit Database - CXSecurity.com
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
C
Check Point Blog
博客园 - Franky
Google DeepMind News
Google DeepMind News
The Register - Security
The Register - Security
The GitHub Blog
The GitHub Blog
L
LINUX DO - 热门话题

Subversion

idea 中, svn 提交代码时,会将空行认为被修改内容 - V2EX 有哪些方式可以部署一套容易使用的 svn 服务器? - V2EX MAC 重装系统后 SVN 无法使用 。跪求大神 - V2EX mac 上有什么好用的 svn 工具吗? - V2EX 紧急求助。mac brew 安装最新版 SVN 报 svn: E120171 - V2EX SVNAdmin2 - 基于 web 的 SVN 管理系统 求一款免费的 MacOS Monterey 的 SVN 客户端 SVN 常用命令总结 - V2EX Linux SVN 下如何正确忽略文件或文件夹? - V2EX 如何在没有 trunk/branch/tag 目录结构的 svn repo 中 创建分支? - V2EX idea 中查看 svn 的提交记录一直卡死未响应,有人知道怎么回事吗? - V2EX 还是 svn 好用,如果不需要创建分支。如果不需要频繁地创建分支, svn 也可以创建分支。 git 在做最简单的提交时,速度太慢了。不是大项目,不要用 git. 想问下 SVN 的代码审核怎么做? - V2EX Mac 自带的 svn 版本 1.9 太高,可以降吗? - V2EX svn 是不是没办法设置忽略指定目录的的指定文件? - V2EX TortoiseMerge 可以比较两个 word 文件的差异,但是其对应的命令行是什么呢? - V2EX sourceforge 上的项目如何匿名检出啊,咋个都不行了呢 有没有办法可以在 linux 环境看到 svn diff 的空白字符 - V2EX 随着使用,.svn文件夹会越来越大,怎么破? - V2EX 如何在svn中直接执行php - V2EX 请问如何删除服务器端的文件夹? - V2EX 请教下用SVN的朋友是怎么来管理分支的? - V2EX
SVN 配合 Apache 出现一个错误[authn_file:error] [pid 7740] (13)Permission denied: AH01620: Could not open password file - V2EX
nullable · 2019-10-17 · via Subversion

在配置 SVN 和 Apache 结合的时候,出现错误 log

[Thu Oct 17 22:53:03.174656 2019] [authn_file:error] [pid 7740] (13)Permission denied: [client 10.0.0.10:50429] AH01620: Could not open password file: /home/svn/repository/conf/svn.passwd

subversion.conf 配置

# Needed to do Subversion Apache server.
LoadModule dav_svn_module     modules/mod_dav_svn.so
# Only needed if you decide to do "per-directory" access control.
LoadModule authz_svn_module   modules/mod_authz_svn.so

<Location /svn>
  DAV svn
  SVNPath /home/svn/repository/repos201911/
  AuthType Basic
  AuthName "Authorization SVN Repo"
  AuthUserFile /home/svn/repository/conf/svn.passwd
  AuthzSVNAccessFile /home/svn/repository/conf/svn.authz
  Require valid-user
</Location>
/home/svn/repository/repos201911
/home/svn/repository/conf/

上面这两个目录均执行了chown -R apache.apache授权命令

SELINUX=disabled 是关闭的,而且重启了机器也还是这个错误。

各位老铁们还有什么地方要检查的么?