码迷,mamicode.com
首页 >  
搜索关键字:sed useradd passwd    ( 16119个结果
Tidb 主机系统参数优化shell
#!/bin/bash#echo "vm.swappiness = 0">> /etc/sysctl.confswapoff -a && swapon -asysctl -psystemctl stop firewalld.servicesystemctl disable firewalld.ser ...
分类:数据库   时间:2021-06-08 23:43:55    阅读次数:0
为了运维方便,新建用户并设置为sudo用户
很多时候root权限被上收,每次申请都特别麻烦。但是有时候排查问题,安装软件啥的都需要使用root权限才方便。所以可以这么干😄 1、先申请root用户。然后创建一个新用户user1 2、给user1加sodu权限 主要命令: 创建用户:useradd -d /home/user1/ user1 设 ...
分类:其他好文   时间:2021-06-07 21:14:25    阅读次数:0
pymysql使用模板
db = pymysql.connect(host="localhost", port=3306, user="root", passwd="xxx", db="stu_info")cursor = db.cursor(cursor=pymysql.cursors.DictCursor)cursor ...
分类:数据库   时间:2021-06-07 20:09:12    阅读次数:0
Mybatis Generator学习
1.作用 它可以根据数据库中的表,来帮我们生成供mybatis使用使用实体类,xml和接口类。 2.基本用法 在maven的pom文件中引入MBG(MyBatis Generator)jar包 <dependency> <groupId>org.mybatis.generator</groupId> ...
分类:其他好文   时间:2021-06-07 20:05:20    阅读次数:0
msyql5.5 本地离线安装 Ubuntu
1、下载 https://downloads.mysql.com/archives/community/ wget https://downloads.mysql.com/archives/get/p/23/file/mysql-5.5.62-linux-glibc2.12-x86_64.tar.g ...
分类:系统相关   时间:2021-06-06 18:56:23    阅读次数:0
OOP summary
Preliminaries Linux Basics Change Password: passwd shutdown: sudo shutdown -h 3 (broadcast to all users in 3 mins) reboot: sudo reboot -r now create a ...
分类:其他好文   时间:2021-06-06 18:53:34    阅读次数:0
Linux - last 命令(Mac 电脑)
前言 为啥写这篇? 因为听 grep、sed 教程的时候有这个命令栗子 加上工作中,运维给我排查问题的时候也用到了,感觉挺重要,先了解为敬! 命令作用 显示用户和TTY的最后登录次数 啥是 TTY 终端(Terminal) =TTY 语法格式 last [-n] [-h host] [-t tty] ...
分类:系统相关   时间:2021-06-04 19:33:37    阅读次数:0
字符串分隔之一题多解
问题:要求将aabbcc,分隔为aa-bb-cc 解答:以下为收集到的解法 echo 'aabbcc'|sed -r 's/(..)(..)(..)/\1-\2-\3/' echo 'aabbcc'| sed -r 's/bb/-&-/' echo "aabbcc"|cut --output-del ...
分类:其他好文   时间:2021-06-03 18:01:47    阅读次数:0
Python 使用Stmp服务使用QQ邮箱给某人发送邮件
# coding=utf-8 import smtplib from email.mime.text import MIMEText msg_from = 'abcdefghi@qq.com' # 发送方邮箱 passwd = 'abcdefghijklmn' # 填入发送方邮箱的授权码 msg_t ...
分类:编程语言   时间:2021-06-03 17:39:06    阅读次数:0
shell script
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:系统相关   时间:2021-06-02 20:19:59    阅读次数:0
16119条   上一页 1 2 3 4 5 6 ... 1612 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!