質問編集履歴

1

パーミッション設定の追記

2019/05/11 17:48

投稿

makkuro
makkuro

スコア57

test CHANGED
File without changes
test CHANGED
@@ -123,3 +123,91 @@
123
123
 
124
124
 
125
125
  Linuxに詳しい方、よろしくお願いします。
126
+
127
+
128
+
129
+ ---
130
+
131
+ 追記
132
+
133
+
134
+
135
+ `visudo`の設定は以下の通り設定してあります。
136
+
137
+
138
+
139
+ ```visudo
140
+
141
+ ## Allows people in group wheel to run all commands
142
+
143
+ %wheel ALL=(ALL) ALL
144
+
145
+
146
+
147
+ ## Same thing without a password
148
+
149
+ %wheel ALL=(ALL) NOPASSWD: ALL
150
+
151
+ ```
152
+
153
+ 出力結果 ↓
154
+
155
+
156
+
157
+ ```bash
158
+
159
+ /usr/bin/env: node: Permission denied
160
+
161
+ ```
162
+
163
+
164
+
165
+ 設定が有効か確認のため`visudo`の設定をコメントアウトしたところ以下のようになったので、正しく設定は反映されていると思います。
166
+
167
+
168
+
169
+ ```visudo
170
+
171
+ ## Allows people in group wheel to run all commands
172
+
173
+ # %wheel ALL=(ALL) ALL
174
+
175
+
176
+
177
+ ## Same thing without a password
178
+
179
+ # %wheel ALL=(ALL) NOPASSWD: ALL
180
+
181
+ ```
182
+
183
+ 出力結果 ↓
184
+
185
+
186
+
187
+ ```bash
188
+
189
+ sudo: no tty present and no askpass program specified.
190
+
191
+ ```
192
+
193
+
194
+
195
+ また、`/etc/php-fpm.d/www.conf`の設定は以下の通りです。
196
+
197
+
198
+
199
+ ```conf
200
+
201
+ user = nginx
202
+
203
+ group = nginx
204
+
205
+ ```
206
+
207
+ 再掲になりますが、`etc/group`は以下の通りです。
208
+
209
+ ```group
210
+
211
+ wheel:x:10:admin,nginx
212
+
213
+ ```