1. 程式人生 > >Linux命令 chmod 例:chmod u+s

Linux命令 chmod 例:chmod u+s

chmod u+s  就是給某個程式的所有者suid許可權,可以像root使用者那樣啟動。

比如安裝nginx時, 一般會建立一個非root使用者,來啟動nginx。

由於非root使用者不能佔用80埠所以使普通使用者以root身份啟動nginx。

cd /ucenter/soft/nginx/sbin

chown root nginx

chmod u+s nginx