码迷,mamicode.com
首页 >  
搜索关键字:running    ( 3503个结果
docker 镜像删除
(我们以删除 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
Java 中的线程 thread
一、问:线程有哪些状态? 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
Error running 'lis [clean]': No valid Maven installation found. Either set the home directory in the configuration dialog or set the M2_HOME environment variable on your system.
出现这种情况主要是更改了maven的安装目录,报错如下: 解决方法如下: OK。问题解决。 ...
分类:其他好文   时间:2020-06-18 11:07:53    阅读次数:234
Redis 3.0.4 字典
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.解决办法
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
sonarqube启动报错
#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
解决GITLAB无法启动runsv no running
可以先尝试用 systemctl start gitlab-runsvdir.service 如果冻结不动的话,就需要查看系统服务项了 systemctl -t target 如果系统正常的话,所有任务应该是loaded active active,如果存在inactive dead选型,意味着有些 ...
分类:其他好文   时间:2020-06-14 20:49:54    阅读次数:260
Zotero: add a history feature for paper viewing
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 ...
分类:Windows程序   时间:2020-06-14 12:40:08    阅读次数:76
WIN32 创建线程CreateThread
#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
3503条   上一页 1 ... 17 18 19 20 21 ... 351 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!