码迷,mamicode.com
首页 >  
搜索关键字:sed useradd passwd    ( 16119个结果
shell_对文件的操作
sed命令 语法: sed [options] '{command}[flags]' [filename] {}是必须有,[]可选 options: -r 使用扩展的正则表达式 -n 只打印缓存中的内容,不打印文本内容 -e 执行多个命令 -f 执行文件中的命令 -i 修改原文件 -i.xxxx 修 ...
分类:系统相关   时间:2021-01-07 12:17:11    阅读次数:0
ansible 批量安装yum包
1、首先安装一下ansible yum install ansible 2、修改一下ansible的参数以防ssh过去的时候需要首次判断yes 或者no sed -i 's/#host_key_checking = False/host_key_checking = False/g' /etc/an ...
分类:其他好文   时间:2021-01-07 12:10:47    阅读次数:0
k8s-etcd
安装部署主控节点服务 -- etcd 部署master节点服务 部署etcd集群 集群规划 HDss7-12.host.com ectc lead 192.168.154.12 HDss7-21.host.com ectc follow 192.168.154.21 HDss7-22.host.co ...
分类:其他好文   时间:2021-01-07 11:46:58    阅读次数:0
Python for Data Science - Data Visualization
Python for Data Science - Data Visualization Three Different Data Visualization Types Data storytelling - for presentations to organizational decision ...
分类:编程语言   时间:2021-01-06 12:18:03    阅读次数:0
Homework 5: Semantic Analyzer
Homework 5: Semantic Analyzer --ExperiencePurposeExperience with coding a semantic analyzer for the Pym language. The computation is based on aparse t ...
分类:其他好文   时间:2021-01-05 11:13:51    阅读次数:0
Hadoop-3.1.3安装
0.创建用户并付权限 sudo useradd iwbdsudo passwd iwbd 配置iwbd用户具有root权限 修改/etc/sudoers文件,找到下面一行(91行),在root下面添加一行,如下所示:## Allow root to run any commands anywhere ...
分类:其他好文   时间:2021-01-04 11:30:50    阅读次数:0
Linux文本处理
分屏查看文件more/lessmore分屏查看,空格按屏查看less支持按行上下键查看,空格按屏查看 grep 查找 //若想使用正则表达式, 需要 -E选项grep -E "nice" metadata.txt //正则表达式匹配metadata中,包含nice的行egrep "nice" met ...
分类:系统相关   时间:2021-01-04 10:47:00    阅读次数:0
linux组管理和权限管理
组介绍 在linux中每个用户必须属于一个组,不能独立于组外。在linux中每个文件有所有者、所在组、其他组的概念。 文件 1.所有者。 2.所在组。 3.其他组。 创建一个组police,再创建一个用户tom,指定组为police,然后用tome来创建一个ok.txt文件 groupadd pol ...
分类:系统相关   时间:2021-01-02 11:32:20    阅读次数:0
Java项目 使用Logback
添加依赖 <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>1.2.3</version> <scope>test</scope> </dependency ...
分类:编程语言   时间:2021-01-02 11:26:25    阅读次数:0
MySQL常用命令
1、修改MySQL密码方法一:usemysql;updateusersetpassword=PASSWORD(“123456”)whereuser=‘root’;flushprivileges;忘记密码:sed-ri‘3dskip-grant-tables‘/etc/my.cnfsystemctlrestartmariadbusemysql;updateusersetpasswor
分类:数据库   时间:2021-01-02 10:57:18    阅读次数:0
16119条   上一页 1 ... 18 19 20 21 22 ... 1612 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!