摘要: 1 总结linux安全模型 - 使用User和Group(角色)控制使用者对文件的操作权限- 用户使用账号和口令登录Linux- 每个文件都有owner,且owner属于某个Group- 每个程序都有owner和Group 资源分派: httpAuthentication 认证,验证用户身份Auth 阅读全文
posted @ 2023-03-19 14:33 Motivator 阅读(39) 评论(0) 推荐(0)
摘要: VMware克隆虚拟机后修改IP、UUID和MAC地址 1 首先关闭需要克隆的虚拟机,右键点击管理-->克隆 2 修改MAC地址,一般克隆完成后,虚拟机的网卡MAC地址会自动改变,如果没有自动改变,可手动进行修改 右键选中虚拟机,选择编辑虚拟机设置(或者右键设置),点击网络适配器,然后点击右边的高级 阅读全文
posted @ 2023-03-18 19:29 Motivator 阅读(2571) 评论(0) 推荐(0)
摘要: Mycat启动报错 报错信息: STATUS | wrapper | 2023/03/10 16:50:37 | <-- Wrapper Stopped STATUS | wrapper | 2023/03/10 17:20:31 | --> Wrapper Started as Daemon ST 阅读全文
posted @ 2023-03-10 17:42 Motivator 阅读(205) 评论(0) 推荐(0)
摘要: 端口9090已经被另一个程序使用 解决方案: 你需要找到该端口上正在运行的进程id(pid)并终止它,可使用isof -i:来获取pid,然后使用sudo kill -9 <pid>来终止程序并释放端口,以便运行Prometheus 阅读全文
posted @ 2022-04-14 17:46 Motivator 阅读(231) 评论(0) 推荐(0)
摘要: #! /bin/bashwhile :do read -p "Please enter prefix & password & num :" pre pass num printf "user information ********************* user prefix : $pre 阅读全文
posted @ 2022-04-14 16:59 Motivator 阅读(57) 评论(0) 推荐(0)