版權(quán)聲明:工作、學(xué)習(xí)中的一些記錄linux常用命令,不足之處還望指正,以免誤人子弟!https://blog.csdn.net/weixin_36380516/article/details/79013286
* Remove anonymous users? [Y/n] <– 是否刪除匿名用戶,回車
* Disallow root login remotely? [Y/n] <–是否禁止root遠程登錄,回車,
for enterprise manager database control, click the remove access radio button for the diagnostic pack and click apply.。there is a big change in version 1.2.5i7. the plugin needsa database user. it is a good idea to configure the user in all database on1 host before going into the details of mk_oracle.cfg. there is a testmode inthe plugin, which will connect to every database and it is faster to configureall databases, then mk_oracle.cfg and finally do the test with the testmodebefore starting the service discovery in check_mk.。for enterprise manager database control, click the remove access radio button for the configuration management pack and click apply.。
* Reload privilege tables now? [Y/n] <– 是否重新加載權(quán)限表,回車
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name localhsot:8080_;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
proxy_pass :8080;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
注意:
linux是不允許秒級關(guān)機的,他是分鐘級的,如果想設(shè)置5秒后關(guān)機,可以這樣:
sleep 5 && shutdown -h now ---休眠5秒,執(zhí)行立即關(guān)機的指令
grep是查找字符串,把包含有匹配字符串的那行顯示出來。
-aux 顯示所有包含其他使用者的進程
如果在前面加上-9表示強制kill,如:kill -9 2992
三、磁盤權(quán)限設(shè)置1.系統(tǒng)盤權(quán)限設(shè)置c:分區(qū)部分:c:/administrators 全部(該文件夾linux常用命令,子文件夾及文件)creator owner 全部(只有子文件來及文件)system 全部(該文件夾,子文件夾及文件)iis_wpg 創(chuàng)建文件/寫入數(shù)據(jù)(只有該文件夾)iis_wpg(該文件夾,子文件夾及文件)遍歷文件夾/運行文件列出文件夾/讀取數(shù)據(jù)讀取屬性創(chuàng)建文件夾/附加數(shù)據(jù)讀取權(quán)限c:/documents and settingsadministrators 全部(該文件夾,子文件夾及文件)power users (該文件夾,子文件夾及文件)讀取和運行列出文件夾目錄讀取system全部(該文件夾,子文件夾及文件)c:/program filesadministrators 全部(該文件夾,子文件夾及文件)creator owner全部(只有子文件來及文件)iis_wpg (該文件夾,子文件夾及文件)讀取和運行列出文件夾目錄讀取power users(該文件夾,子文件夾及文件)修改權(quán)限system全部(該文件夾,子文件夾及文件)terminal server user (該文件夾,子文件夾及文件)修改權(quán)限2.網(wǎng)站及虛擬機權(quán)限設(shè)置(比如網(wǎng)站在e盤)說明:我們假設(shè)網(wǎng)站全部在e盤wwwsite目錄下,并且為每一個虛擬機創(chuàng)建了一個guest用戶,用戶名為vhost1...vhostn并且創(chuàng)建了一個webuser組,把所有的vhost用戶全部加入這個webuser組里面方便管理。create mask=0644 建立(寫入)文件的的權(quán)限模式為0644(自己可擦寫,群組可讀,其它user可讀)。文件保護 --- 就是對服務(wù)器上的目錄或文件進行保護,比如限制修改,限制相關(guān)目錄不能寫入增加文件或不能執(zhí)行exe或安裝權(quán)限,請不要對系統(tǒng)目錄做保護,會引起很多問題,一般只是用來保護網(wǎng)站目錄或者是對軟件目錄做保護,而且保護限制在不能寫入或修改,但是要注意,如果限制了不能修改或?qū)懭?那么網(wǎng)站不能更新文件等等,一定要對被設(shè)置的文件或文件夾目錄有很清楚的了解才去做這個設(shè)置。