質問編集履歴
1
見にくかったので改行した
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,35 +1,60 @@
|
|
1
1
|
Webサーバにドメイン認証の機能を付けたいのですが上手くいきません。
|
2
2
|
|
3
|
+
|
3
4
|
自分で調べた感じだと
|
5
|
+
|
4
6
|
/etc/httpd/conf.modules.d/00-base.conf ←ここに LoadModules~を記入する
|
7
|
+
|
5
8
|
/etc/httpd/conf.modules.d/10-subversion.conf ←ここに<Location /svn>~を記入する
|
9
|
+
|
6
10
|
/usr/lib64/httpd/modules/ ←ここに ~.soのファイルを置く
|
11
|
+
|
7
12
|
このような認識でこれらをいじって導入すると思うのですが
|
8
13
|
|
14
|
+
|
9
15
|
httpd.service - The Apache HTTP Server
|
16
|
+
|
10
17
|
Loaded: loaded (/usr/lib/systemd/system/httpd.service; disabled)
|
18
|
+
|
11
19
|
Active: failed (Result: exit-code) since 金 2015-12-04 13:26:02 JST; 6s ago
|
20
|
+
|
12
21
|
Process: 70011 ExecStop=/bin/kill -WINCH ${MAINPID} (code=exited, status=1/FAILURE)
|
22
|
+
|
13
23
|
Process: 70000 ExecReload=/usr/sbin/httpd $OPTIONS -k graceful (code=exited, status=1/FAILURE)
|
24
|
+
|
14
25
|
Process: 70010 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)
|
26
|
+
|
15
27
|
Main PID: 70010 (code=exited, status=1/FAILURE)
|
16
28
|
|
29
|
+
|
17
30
|
12月 04 13:26:02 localhost.localdomain httpd[70010]: AH00526: Syntax error on line 2 of /etc/httpd/conf.modules.d/10-subversion.conf:
|
31
|
+
|
18
32
|
12月 04 13:26:02 localhost.localdomain httpd[70010]: Unknown DAV provider: svn
|
33
|
+
|
19
34
|
12月 04 13:26:02 localhost.localdomain systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
|
35
|
+
|
20
36
|
12月 04 13:26:02 localhost.localdomain kill[70011]: kill: cannot find process ""
|
37
|
+
|
21
38
|
12月 04 13:26:02 localhost.localdomain systemd[1]: httpd.service: control process exited, code=exited status=1
|
39
|
+
|
22
40
|
12月 04 13:26:02 localhost.localdomain systemd[1]: Failed to start The Apache HTTP Server.
|
41
|
+
|
23
42
|
12月 04 13:26:02 localhost.localdomain systemd[1]: Unit httpd.service entered failed state.
|
24
43
|
|
44
|
+
|
25
45
|
というエラーが出てしまってよくわかりません。
|
46
|
+
|
26
47
|
/etc/httpd/conf.modules.d/10-subversion.conf の中身がおかしいと書いてあるようなのですが内容は
|
27
48
|
|
28
49
|
<location /svn>
|
50
|
+
|
29
51
|
DAV svn
|
52
|
+
|
30
53
|
SVNParentPath /svn/
|
54
|
+
|
31
55
|
</location>
|
32
56
|
|
57
|
+
|
33
58
|
これしか書いていないのでおかしいとは思えません。
|
34
59
|
どうすればエラーが取れるでしょうか。
|
35
60
|
|