Node.js process.setegid() 方法
process.setegid() 方法是进程模块的内置应用程序编程接口,用于设置Node.js进程的数字有效组标识。
句法:
process.setegid(id)
参数:此方法接受上面提到的单个参数,如下所述:
- id:必填参数。它是一个字符串或整数,表示组名或 ID,如果传递了组名,它会在解析关联的数字 ID 时阻塞。
返回:它不返回任何东西。
注意:此函数仅适用于 POSIX 平台。在 windows 或 android 平台上不可用,因此会导致错误,即 TypeError, setegid is not a 函数。
下面的例子说明了在 Node.js 中process.setegid() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// process.setegid() Method
// Include process module
const process = require('process');
// Printing the numerical effective group
// identity of the Node.js process checking
// whether the methods exists or not
if (process.getegid && process.setegid ) {
// Setting gid
process.setegid(400);
// Printing getegid() value
console.log("The numerical effective group"
+ " identity of the Node.js process:"
+ process.getegid());
}
输出:
The numerical effective group identity of the Node.js process: 400
示例 2:
// Node.js program to demonstrate the
// process.setegid() Method
// Include process module
const process = require('process');
// Checking whether the method
// exists or not
if (process.setegid) {
try {
process.setegid(696);
console.log("gid has successfully been set");
} catch (err) {
console.log("Failed to set gid:", err);
}
}
// Checking whether the method exists or not
if (process.getegid) {
// Printing getegid() value
console.log("The numerical effective group identity"
+ " of the Node.js process:"
+ process.getegid());
}
输出:
gid has successfully been set
The numerical effective group identity of the Node.js process: 696
注意:上面的程序将使用node filename.js
命令编译和运行。
参考: https://nodejs.org/api/process.html#process_process_setegid