码迷,mamicode.com
首页 >  
搜索关键字:ceph mon 故障处理    ( 8298个结果
thinkphp6 workerman 定时器操作控制器的方法
一、安装workman composer require workerman/workerman 二、创建 Timer 命令 php think make:command Timers 三、实现Timer <?php declare (strict_types = 1); namespace app ...
分类:Web程序   时间:2021-06-11 17:46:22    阅读次数:0
Linux命令之定时调度-crontab
以上cron命令格式为:* * * * * [root run-parts] command 前面五个*号代表时间,用数字,数字的取值范围和含义如下: 第一个*:分钟 (0-59)[整数] 第二个*:小時(0-23)[整数] 第三个*:日期(1-31)[整数(必须是指定月份的有效日期)] 第四个*: ...
分类:系统相关   时间:2021-06-10 17:51:30    阅读次数:0
springboot整合amazonS3,封装上传文件接口
1.在pom.xml中引入amazonS3的依赖。 <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-s3</artifactId> <version>1.11.792</version> </depende ...
分类:编程语言   时间:2021-06-10 17:34:05    阅读次数:0
多进程的调用(multiprocessing.Process)
import multiprocessing, time, os# def pro(name):# print('hello', name, time.ctime())## if __name__ == '__main__':# l = []# for t in range(4):# t = mul ...
分类:系统相关   时间:2021-06-08 23:20:39    阅读次数:0
centos7使用yum方式安装redis6
yum -y install epel-release wget make gcc-c++ cd /opt wget https://download.redis.io/releases/redis-6.2.3.tar.gz tar -xf redis-6.2.3.tar.gz cd redis-6 ...
分类:其他好文   时间:2021-06-07 21:16:38    阅读次数:0
JAVA Monitor
在多线程的 JAVA程序中,实现线程之间的同步,就要说说 Monitor。 Monitor是 Java中用以实现线程之间的互斥与协作的主要手段,它可以看成是对象或者 Class的锁。每一个对象都有,也仅有一个 monitor。下 面这个图,描述了线程和 Monitor之间关系,以 及线程的状态转换图 ...
分类:编程语言   时间:2021-06-04 19:25:52    阅读次数:0
1. ATF(ARM Trusted firmware)完成启动流程【转】
转自:https://icyshuai.blog.csdn.net/article/details/72468109 历经一年多时间的系统整理合补充,《手机安全和可信应用开发指南:TrustZone与OP-TEE技术详解 》一书得以出版,书中详细介绍了TEE以及系统安全中的所有内容,全书按照从硬件到 ...
分类:其他好文   时间:2021-06-03 18:19:47    阅读次数:0
Spring注解事务大致的实现原理
1. 自定义注解 @MyTransaction /** * @author yangxj * @see org.springframework.transaction.TransactionDefinition */ @Target({ElementType.METHOD, ElementType. ...
分类:编程语言   时间:2021-06-03 18:02:05    阅读次数:0
K8S---harbor故障处理
问题1:harbor服务不能正常提供? Error response from daemon: Get http://hub.atguigu.com/v2/: dial tcp 192.168.66.100:80: connect: connection refused 原因分析:harbor服务器 ...
分类:其他好文   时间:2021-06-03 17:53:13    阅读次数:0
Bad habits : Putting NOLOCK everywhere
Bad habits : Putting NOLOCK everywhere [See an index of all bad habits / best practices posts] I went through the archive above, and was quite surpris ...
分类:其他好文   时间:2021-06-02 19:46:42    阅读次数:0
8298条   上一页 1 2 3 4 5 ... 830 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!