码迷,mamicode.com
首页 >  
搜索关键字:linux root 修改 密码    ( 317956个结果
遍历文件夹
import os def traverse_dir(path): for root, dirs, files in os.walk(path): for dir in dirs: dir_path = os.path.join(root, dir) print(dir_path) traverse ...
分类:其他好文   时间:2021-07-05 17:23:58    阅读次数:0
修改tmux背景色
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:其他好文   时间:2021-07-05 17:23:38    阅读次数:0
【题解】[CTSC2018]混合果汁
[CTSC2018]混合果汁 \(\text{Solution:}\) 题目有三个限制:饮料体积的限制、要求的饮料总体积限制、总价格限制。 首先,美味度最大是我们一定要满足的条件。考虑如何让它变得好维护: 将饮料按照美味度排序,并按顺序建立主席树。 这样,\(root_i\) 所对应的区间 \([1 ...
分类:其他好文   时间:2021-07-05 17:22:16    阅读次数:0
深入理解MVCC与BufferPool缓存机制
深入理解MVCC与BufferPool缓存机制 MVCC多版本并发控制机制 Mysql在可重复读隔离级别下如何保证事务较高的隔离性,我们上节课给大家演示过,同样的sql查询语句在一个事务 里多次执行查询结果相同,就算其它事务对数据有修改也不会影响当前事务sql语句的查询结果。 这个隔离性就是靠MVC ...
分类:Web程序   时间:2021-07-05 17:14:45    阅读次数:0
git在linux安装步骤详解!!
linux上安装,以centos 7.x为例 yum命令安装 yum install gityum install 安装的git不是最新版本,如需最新版本需要自行编译 到下面的网站下载合适的版本 https://mirrors.edge.kernel.org/pub/software/scm/git ...
分类:系统相关   时间:2021-07-05 17:05:30    阅读次数:0
Centos8安装mariaDB
[root@NMS src]# yum search mariadb Last metadata expiration check: 0:46:24 ago on Fri 02 Jul 2021 08:18:32 PM CST. Name Exactly Matched: mariadb maria ...
分类:数据库   时间:2021-07-05 16:58:36    阅读次数:0
QEMU树莓派下配置及安装软件-3
1、设置加速,修改/etc/apt/sources.list如下 deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main contrib non-free rpi deb-src http://mirrors.tu ...
分类:其他好文   时间:2021-07-05 16:54:39    阅读次数:0
Spring Boot Docker
1. IDEA中配置Docker Docker默认只接受本地客户端的请求,为了能够远程访问它,首先要开放Docker的监听端口,允许外部应用可以访问 修改 /lib/systemd/system/docker.service 文件 找到 ExecStart 在后面追加 -H tcp://0.0.0. ...
分类:编程语言   时间:2021-07-05 16:43:40    阅读次数:0
Linux离线环境下python3连接impala
1.需要在联网的linux环境下下载好所需要的包 /root/temp 目录 pip3 download impala -d /root/temp pip3 download impyla -d /root/temp 2.下载之后的包 3.然后拷贝到离线的环境下 执行 pip3 install安装所 ...
分类:编程语言   时间:2021-07-05 16:41:50    阅读次数:0
德鲁伊连接池配置文件
driverClassName = com.mysql.cj.jdbc.Driver url = jdbc:mysql://localhost:3306/数据库名?serverTimezone=UTC username = root password = 123456 #初始化连接数量 initia ...
分类:其他好文   时间:2021-07-05 16:39:21    阅读次数:0
317956条   上一页 1 ... 9 10 11 12 13 ... 31796 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!