版权声明:工作、学习中的一些记录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] <– 是否重新加载权限表,回车
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是不允许秒级关机的,他是分钟级的,如果想设置5秒后关机,可以这样:
sleep 5 && shutdown -h now ---休眠5秒,执行立即关机的指令
grep是查找字符串,把包含有匹配字符串的那行显示出来。
-aux 显示所有包含其他使用者的进程
如果在前面加上-9表示强制kill,如:kill -9 2992
三、磁盘权限设置1.系统盘权限设置c:分区部分:c:/administrators 全部(该文件夹linux常用命令,子文件夹及文件)creator owner 全部(只有子文件来及文件)system 全部(该文件夹,子文件夹及文件)iis_wpg 创建文件/写入数据(只有该文件夹)iis_wpg(该文件夹,子文件夹及文件)遍历文件夹/运行文件列出文件夹/读取数据读取属性创建文件夹/附加数据读取权限c:/documents and settingsadministrators 全部(该文件夹,子文件夹及文件)power users (该文件夹,子文件夹及文件)读取和运行列出文件夹目录读取system全部(该文件夹,子文件夹及文件)c:/program filesadministrators 全部(该文件夹,子文件夹及文件)creator owner全部(只有子文件来及文件)iis_wpg (该文件夹,子文件夹及文件)读取和运行列出文件夹目录读取power users(该文件夹,子文件夹及文件)修改权限system全部(该文件夹,子文件夹及文件)terminal server user (该文件夹,子文件夹及文件)修改权限2.网站及虚拟机权限设置(比如网站在e盘)说明:我们假设网站全部在e盘wwwsite目录下,并且为每一个虚拟机创建了一个guest用户,用户名为vhost1...vhostn并且创建了一个webuser组,把所有的vhost用户全部加入这个webuser组里面方便管理。create mask=0644 建立(写入)文件的的权限模式为0644(自己可擦写,群组可读,其它user可读)。文件保护 --- 就是对服务器上的目录或文件进行保护,比如限制修改,限制相关目录不能写入增加文件或不能执行exe或安装权限,请不要对系统目录做保护,会引起很多问题,一般只是用来保护网站目录或者是对软件目录做保护,而且保护限制在不能写入或修改,但是要注意,如果限制了不能修改或写入,那么网站不能更新文件等等,一定要对被设置的文件或文件夹目录有很清楚的了解才去做这个设置。