質問編集履歴
3
試したことを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -113,3 +113,35 @@
|
|
113
113
|
mount: /etc/fstab や /etc/mtab 内に /var/www/cgi-bin/cbgrn/smarty を見つけられません
|
114
114
|
|
115
115
|
```
|
116
|
+
|
117
|
+
###(20201215追記)試したこと4
|
118
|
+
|
119
|
+
```
|
120
|
+
|
121
|
+
# df -h
|
122
|
+
|
123
|
+
Filesystem Size Used Avail Use% Mounted on
|
124
|
+
|
125
|
+
/dev/mapper/VolGroup-lv_root
|
126
|
+
|
127
|
+
50G 20G 27G 43% /
|
128
|
+
|
129
|
+
tmpfs 939M 72K 939M 1% /dev/shm
|
130
|
+
|
131
|
+
/dev/sda1 477M 175M 278M 39% /boot
|
132
|
+
|
133
|
+
/dev/mapper/VolGroup-lv_home
|
134
|
+
|
135
|
+
45G 1.4G 42G 4% /home
|
136
|
+
|
137
|
+
# mount -o rw,remount /
|
138
|
+
|
139
|
+
```
|
140
|
+
|
141
|
+
を実行。しかし、実行結果は下記。
|
142
|
+
|
143
|
+
```
|
144
|
+
|
145
|
+
mount: cannot remount ブロックデバイス /dev/mapper/VolGroup-lv_root read-write, is write-protected
|
146
|
+
|
147
|
+
```
|
2
試したことを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,7 +68,7 @@
|
|
68
68
|
|
69
69
|
|
70
70
|
|
71
|
-
###(20201215追記)試したこと
|
71
|
+
###(20201215追記)試したこと2
|
72
72
|
|
73
73
|
httpd.confの中身をviで開いて読んでみる。
|
74
74
|
|
@@ -97,3 +97,19 @@
|
|
97
97
|
Group apache
|
98
98
|
|
99
99
|
```
|
100
|
+
|
101
|
+
###(20201215追記)試したこと3
|
102
|
+
|
103
|
+
```
|
104
|
+
|
105
|
+
# mount -o remount,rw /var/www/cgi-bin/cbgrn/smarty
|
106
|
+
|
107
|
+
```
|
108
|
+
|
109
|
+
を実行。しかし、実行結果は下記。
|
110
|
+
|
111
|
+
```
|
112
|
+
|
113
|
+
mount: /etc/fstab や /etc/mtab 内に /var/www/cgi-bin/cbgrn/smarty を見つけられません
|
114
|
+
|
115
|
+
```
|
1
試したことを追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -65,3 +65,35 @@
|
|
65
65
|
|
66
66
|
|
67
67
|
以上、どうぞよろしくお願いいたします。
|
68
|
+
|
69
|
+
|
70
|
+
|
71
|
+
###(20201215追記)試したこと
|
72
|
+
|
73
|
+
httpd.confの中身をviで開いて読んでみる。
|
74
|
+
|
75
|
+
以下のように記載されていましたが、ここのパートを「apache」→「root」等に書き換えるのでしょうか?
|
76
|
+
|
77
|
+
chmodコマンドで権限設定するのではなく、httpd.confで権限を設定するのでしょうか?
|
78
|
+
|
79
|
+
```
|
80
|
+
|
81
|
+
# If you wish httpd to run as a different user or group, you must run
|
82
|
+
|
83
|
+
# httpd as root initially and it will switch.
|
84
|
+
|
85
|
+
#
|
86
|
+
|
87
|
+
# User/Group: The name (or #number) of the user/group to run httpd as.
|
88
|
+
|
89
|
+
# It is usually good practice to create a dedicated user and group for
|
90
|
+
|
91
|
+
# running httpd, as with most system services.
|
92
|
+
|
93
|
+
#
|
94
|
+
|
95
|
+
User apache
|
96
|
+
|
97
|
+
Group apache
|
98
|
+
|
99
|
+
```
|