0
0

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 3 years have passed since last update.

WinSCPで特定ユーザーでもroot権限でファイル閲覧編集を可能にする方法

Last updated at Posted at 2021-05-14

運用のセキュリティ上、SSHのrootログイン禁止としましたが
いざという時に、WinSCPでも、root権限が必要なシステムファイルや
ログファイル等の閲覧編集を行いたくなり、特定ユーザーのみ、
root権限でファイルの閲覧編集を可能にする事にしました。

##■設定内容

sudo権限で、sftp-serverコマンドを実行できる様にします。

####・CentOS7 の場合

sudo /usr/libexec/openssh/sftp-server

####・Ubunts20.04 の場合

sudo /usr/lib/sftp-server

 のコマンドを、WinSCPから特定のユーザーで実行できるようにします。


####①sudoの設定

$ sudo visudo  ## 以下の内容を追記します。

対象ユーザー名 ALL=NOPASSWD: /usr/lib/sftp-server  ## Ubunts20.04

対象ユーザー名 ALL=NOPASSWD: /usr/libexec/openssh/sftp-server  ## CentOS7

####②WinSCP の高度なサイトの設定

 環境 - SFTP - プロトコルオプションのSFTPサーバーにコマンドを入力します。
2021-05-13_17h34_41.png

######参考にさせていただいたページ
https://winscp.net/eng/docs/faq_su
https://www.monoreview.com/archives/398

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?