摘要:
shadow 文件权限 $ll shadow 1 root root 1131 Aug 6 12:04 shadow 可以看出只有root可以操作它,普通用户执行passwd,内部也是先隐式切到root,改完再回到普通用户 shadow文件内容 # head -3 /etc/shadow root: 阅读全文
摘要:
先写结论 : less is more,使用less 优于使用more more 和 less的区别 优于more不能后退,而less 就在其基础上增加了后退功能 less 可以使用键盘上的上下方向键显示上下内容,more不可以(经测试已经支持了) less 不必加载整个文件,加载速度会比more更 阅读全文
摘要:
文件内容 ## # User Database # # Note that this file is consulted directly only when the system is running # in single-user mode. At other times this infor 阅读全文
摘要:
// 查看时间各种状态,查看时区等 timedatectl // 输出 Local time: 四 2014-12-25 10:52:10 CST Universal time: 四 2014-12-25 02:52:10 UTC RTC time: 四 2014-12-25 02:52:10 Ti 阅读全文
摘要:
// 查看防火墙状态: systemctl status firewalld.service // 执行关闭 systemctl stop firewalld.service // 禁用开机启动 systemctl disable firewalld.service 阅读全文
摘要:
在使用ssh 连接自己的centos 虚拟机时,发现连接不上,于是有了这个安装过程 (以下是在root用户下执行的,没权限的话就sudo) 1.首先判断是否有这个服务 systemctl list-unit-files | grep sshd 发现没有 2. 判断是否有用yum 安装了这个服务 yu 阅读全文
摘要:
安装应用 yum install -y xxx -y 表示自动yes 卸载应用 yum -y remove xxx -y 表示自动yes 查看已安装的应用 yum list installed 阅读全文
摘要:
1 通过Mac 的设置 stop mysql 2 跳过权限认证 // 进入数据库指令文件 cd /usr/local/mysql/bin // 跳过权限认证 sudo ./mysqld_safe --skip-grant-tables 3 免密码进入数据库 新开一个终端,同时保持原来那个终端也开着, 阅读全文
摘要:
1. 在阿里云山申请三台云服务器 1.1 环境准备 完成配置后的信息 服务器IP 操作系统 CPU 内存 硬盘 主机名 节点角色 172.18.119.145 centos7 2 4G 50G k8s-master master 172.18.119.150 centos7 2 4G 50G k8s 阅读全文
摘要:
在阿里云上部署了一个K8S集群,一master, 两node; 然后执行 kubectl create -f tomcat.yml yaml如下: apiVersion: apps/v1 kind: Deployment metadata: name: tomcat-app spec: select 阅读全文