(我们以删除 php-fpm 这个镜像为例子) 一、查看镜像的 ID [root@localhost ~]# docker images REPOSITORY TAG IMAGE ID CREATED SIZE docker.io/redis latest 36304d3b4540 3 weeks ...
分类:
其他好文 时间:
2020-06-22 10:47:45
阅读次数:
52
一、问:线程有哪些状态? new, runnable, running, waiting, dead 线程状态间的流转 二、问:线程实现方式? 实现 Runnable 接口,然后new Thread, 将实现的类对象传入Thread 构造函数 继承Thread (细心同学会发现,Thread本身就是 ...
分类:
编程语言 时间:
2020-06-21 23:34:42
阅读次数:
53
1、查看firewall服务状态systemctl status firewalld出现Active: active (running)切高亮显示则表示是启动状态。出现 Active: inactive (dead)灰色表示停止,看单词也行。2、查看firewall的状态firewall-cmd - ...
分类:
其他好文 时间:
2020-06-21 16:23:23
阅读次数:
116
出现这种情况主要是更改了maven的安装目录,报错如下: 解决方法如下: OK。问题解决。 ...
分类:
其他好文 时间:
2020-06-18 11:07:53
阅读次数:
234
redis的字典使用哈希表作为底层实现,一个哈希表里面可以有多个哈希表,而每个哈希表节点就保存了字典中的一个键值对。 1.哈希表 typedef struct dictht { //哈希表 dictEntry **table; //存放一个数组的地址,数组存放着哈希表节点dictEntry的地址 u ...
分类:
其他好文 时间:
2020-06-18 01:55:42
阅读次数:
53
Several ports (8005, 8080, 8009) required by Tomcat v7.0 Server at localhost are already in use. The server may already be running in another process, ...
分类:
其他好文 时间:
2020-06-16 14:41:14
阅读次数:
63
#sonarque root启动报错 cat /usr/local/sonarqube/logs/sonar.log #查看日志 WrapperSimpleApp: Encountered an error running main: java.nio.file.AccessDeniedExcept ...
分类:
其他好文 时间:
2020-06-16 00:58:07
阅读次数:
70
可以先尝试用 systemctl start gitlab-runsvdir.service 如果冻结不动的话,就需要查看系统服务项了 systemctl -t target 如果系统正常的话,所有任务应该是loaded active active,如果存在inactive dead选型,意味着有些 ...
分类:
其他好文 时间:
2020-06-14 20:49:54
阅读次数:
260
During my time with Zotero, I've really enjoyed its various features and the 300MB of file sync space is able to be extended by modifying the path to ...
#include <stdio.h> #include <iostream> #include <windows.h> using namespace std; //定义线程调用函数 DWORD WINAPI ThreadProc(LPVOID lpParamter) { int iRunTime ...
分类:
编程语言 时间:
2020-06-14 12:33:04
阅读次数:
71