70
64

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS で sudo 時に実行ユーザーのPATHを引き継ぐ

Last updated at Posted at 2013-11-02

sudo -sすればとりあえずPATHが通ったのだが、それって運用の観点から見たら良くないわ。
って事で、調べました。

##環境
ゲスト: CentOS 6.2
ホスト: MacBookAir MacOS 10.8
VM: Parallels Desktop 9 for mac
ゲストを対象とする。

##/etc/sudoers を編集

$ sudo visudo

を叩いて、

Defaults    env_keep +=  ほにゃららら

が書いてある行を探そう。
それらの直下に

Defaults    env_keep +=  "PATH"

を追加し、

Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin
↓
# Defaults    secure_path = /sbin:/bin:/usr/sbin:/usr/bin

とコメントアウトすれば、PATHが通るようになります。

##参考
sudo時にPATHを引き継ぐ

##感謝
参考にさせていただいたサイト管理人の皆様、誠にありがとうございました。

70
64
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
70
64

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?