svnserve.conf: Option expected的問題解決方法
經常有新手配置基於svnserve的subversion伺服器後,
在客戶端訪問subversion版本庫時出現這個錯誤:
svnserve.conf:12: Option expected
為什麼會出現這個錯誤呢,就是因為subversion讀取配置檔案svnserve.conf時,無法識別有前置空格的配置檔案,如
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)
### Visit http://subversion.tigris.org/ for more information.
[general]
### These options control access to the repository for unauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
anon-access = read
auth-access = write
像上面的配置檔案中,anon-access是頂行的,沒問題,而auth-access就存在前置空格,會導致這個錯誤。
要避免出現這個錯誤,應該在去掉這些行前的#時,也要順手去掉前面的空格.
在客戶端訪問subversion版本庫時出現這個錯誤:
svnserve.conf:12: Option expected
為什麼會出現這個錯誤呢,就是因為subversion讀取配置檔案svnserve.conf時,無法識別有前置空格的配置檔案,如
### This file controls the configuration of the svnserve daemon, if you
### use it to allow access to this repository. (If you only allow
### access through http: and/or file: URLs, then this file is
### irrelevant.)
### Visit http://subversion.tigris.org/ for more information.
[general]
### These options control access to the repository for unauthenticated
### and authenticated users. Valid values are "write", "read",
### and "none". The sample settings below are the defaults.
anon-access = read
auth-access = write
像上面的配置檔案中,anon-access是頂行的,沒問題,而auth-access就存在前置空格,會導致這個錯誤。
要避免出現這個錯誤,應該在去掉這些行前的#時,也要順手去掉前面的空格.
相關文章
- opatch option Not available yet問題的解決方法AI
- python問題:IndentationError:expected an indented block錯誤解決PythonErrorBloC
- 完美解決html中select的option不能隱藏的問題。HTML
- 遇到問題的解決方法
- SERVICE問題解決方法
- **PHPNotice:Undefinedindex:…問題的解決方法PHPUndefinedIndex
- 解決問題的方法和途徑-問題管理
- 解決問題通用方法論
- As常見問題解決方法
- "undefined reference to" 問題解決方法Undefined
- 問題解決方法有三
- Josephus問題解決方法一
- Josephus問題解決方法二
- 今天遇到的問題與解決方法
- 用簡單的方法解決問題
- 解決Can not allocate log問題的方法
- but no encoding declared;問題的解決方法Encoding
- vue中常見的問題以及解決方法Vue
- CentOS中文亂碼問題的解決方法CentOS
- css高度塌陷問題解決方法CSS
- windows xp共享問題解決方法Windows
- MYSQL亂碼問題解決方法MySql
- 解決「問題」,不要解決問題
- 解決ajax跨域問題的多種方法跨域
- 解決代理超時問題的三種方法
- JS中toFixed()方法的問題及解決方案JS
- MySQL server has gone away 問題的解決方法MySqlServerGo
- PHP出現Cannotmodifyheaderinformation問題的解決方法PHPHeaderORM
- java中亂碼問題解決方法Java
- Nacos 常見問題及解決方法
- dedecms 後臺假死問題解決方法
- 快取穿透問題與解決方法快取穿透
- pyinstaller閃退問題解決方法
- Oracle問題解決方法ORA-0Oracle
- ssh登入慢問題解決方法
- Josephus問題解決方法五(遞迴)遞迴
- Tomcat埠占用問題解決方法Tomcat
- GO Modules的理解和遇到的問題解決方法Go