Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Unixで実行中のプロセスのgid情報を「更新」する可能性はありますか?gidが新しいユーザーで更新された場合、プロセスを再起動せずに、そのgidで実行されているプロセスに変更を認識させることはできますか?
いいえ、ちがいます。プロセスの開始時に uid/gid が読み取られ、プロセスはこの同じ情報を保持します。途中でユーザー/グループの権限が変更された場合、プロセスは次のようになります。ファイルシステムに書き込もうとすると問題が発生します。
gid を更新する唯一の方法は、プロセスを再起動することです。