码迷,mamicode.com
首页 >  
搜索关键字:failed to start daem    ( 32824个结果
curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused
报错 curl: (7) Failed to connect to raw.githubusercontent.com port 443: Connection refused 解决方法: 参考: https://bbs.huaweicloud.com/blogs/143682 很多方法都没用,这个 ...
分类:Web程序   时间:2021-06-08 23:20:59    阅读次数:0
win10开机自启脚本
前言 在window服务器上有些脚本没办法设置自动启动,但是每次开机都要手动启动,非常的麻烦。 设置 创建一个新的记事本 编写win脚本 C: CD C:\Users\Acer\Desktop\ #进入脚本的目录下 start test.bat #启动某个脚本 更改记事本的后缀名为.bat 打开文件 ...
分类:Windows程序   时间:2021-06-08 22:45:27    阅读次数:0
springboot中mybatis配置文件加载和扫描问题
1、添加mybatis依赖 <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>1.3.2</version> </ ...
分类:编程语言   时间:2021-06-08 22:31:11    阅读次数:0
多线程01
线程的状态图 新建(NEW):新创建了一个线程对象。 可运行(RUNNABLE):线程对象创建后,其他线程(比如main线程)调用了该对象的start()方法。该状态的线程位于可运行线程池中,等待被线程调度选中,获取cpu 的使用权 。 运行(RUNNING):可运行状态(runnable)的线程获 ...
分类:编程语言   时间:2021-06-07 21:10:52    阅读次数:0
python解压zip文件
@staticmethoddef unzip_file(failed_file): zip_file = zipfile.ZipFile(failed_file) print(zip_file) if os.path.isdir(failed_file[0:-20]): pass else: os. ...
分类:编程语言   时间:2021-06-07 20:42:48    阅读次数:0
负Margin技术,轻松实现 1.自适应两列布局,2.元素垂直居中(相对定位)
1.负margin技术: 当元素的margin-top和margin-left取负值时,“当前元素”会被拉向指定方向。 当元素的margin-bottom和margin-right取负值时,“后续元素”会被拉向指定方向。 自适应两列布局 <style> *{margin:0} .main,.side ...
分类:其他好文   时间:2021-06-07 20:00:34    阅读次数:0
Ncurses(三)- 使用颜色
Ncurses(三)- 使用颜色 检查颜色可用 在使用颜色之前,你需要知道你的终端是否支持颜色显示,你可以通过以下if检测: if (has_colors() == FALSE) { endwin(); printf("Your terminal does not support color\n") ...
分类:其他好文   时间:2021-06-06 19:23:46    阅读次数:0
Mac brew 启动和关闭php-fpm
启动 % brew services start php@5.6 ==> Successfully started `php@5.6` (label: homebrew.mxcl.php@5.6) jiqing@jiqingdeMacBook-Pro nginx % ps -ef | grep ph ...
分类:Web程序   时间:2021-06-06 19:15:28    阅读次数:0
windows下安装redis并设置自启动
阅读原文 一、下载windows版本的Redis 官网下载地址:http://redis.io/download github下载地址:https://github.com/MSOpenTech/redis/tags 二、安装Redis 1.这里下载的是Redis-x64-3.2.100版本,我的电 ...
分类:Windows程序   时间:2021-06-06 18:43:07    阅读次数:0
04设置SSH免密登录
SSH无密登录配置 1)配置ssh (1)基本语法 ssh另一台电脑的ip地址 (2)ssh连接时出现Host key verification failed的解决方法 ssh hadoop103 出现: The authenticity of host 'hadoop103 (192.168.18 ...
分类:其他好文   时间:2021-06-05 18:38:40    阅读次数:0
32824条   上一页 1 ... 9 10 11 12 13 ... 3283 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!