在web浏览器中查看服务器并使用鼠标执行系统任务,很容易管理存储、配置网络和检查日志等操作。
# 安装cockpit yum -y install cockpit # 启用cockpit systemctl enable --now cockpit.socket #设置开机自启动同时开启服务一条命令就可以搞定 # 查看开机是否启动 systemctl list-unit-files|grep cockpit cockpit-motd.service static cockpit.service static cockpit.socket enabled # enabled表示开机启动 # 启动cockpit服务 systemctl start cockpit.service # 查看状态 systemctl status cockpit.service # 使用cockpit监听9090端口 yum install net-tools netstat -tulnp | grep 9090 # 如果系统防火墙开启,则需要执行以下操作,添加cockpit服务到防火墙以打开9090端口。 firewall-cmd --add-service=cockpit --permanent firewall-cmd --reload
最新评论
mat插件可以检测内存数据
标识接口?
序列化serializabel就是一个标识
就差一个MAC了
mark
除了预置sql查询字段,其他我竟然都没用过
可以,这个问题遇到过
mybatis多个参数: 1. 注解(最常用) 2. 转化为对象或MAP 3. 按顺序(这个最蠢,写的代码看得费劲) 单个参数需要注意得: 1.基本数据类型随便写 2.数组用array,l