会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
_Lawrence
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
7
8
9
10
11
12
13
14
15
···
20
下一页
2021年11月18日
centos8开机卡在piix4_smbus 0000:00:07.3: SMBus Host controller not enabled
摘要: 报错:piix4_smbus 0000:00:07.3: SMBus Host controller not enabled 查明装入模块的确切名字。命令:lsmod | grep i2c (查询结果为:i2c_piix4 模块) 将该模块列入不装入名单。编辑文件命令:sudo vi /etc/mo
阅读全文
posted @ 2021-11-18 15:06 _Lawrence
阅读(806)
评论(0)
推荐(0)
2021年11月17日
centos8系统docker配置ca认证和idea部署
摘要: 1、创建ca文件夹,存放CA私钥和公钥 mkdir -p /usr/local/ca cd /usr/local/ca/ 2、创建密码 需要连续输入两次相同的密码 openssl genrsa -aes256 -out ca-key.pem 4096 3、依次输入密码、国家、省、市、组织名称等 op
阅读全文
posted @ 2021-11-17 17:45 _Lawrence
阅读(440)
评论(0)
推荐(0)
docker报错:Job for docker.service failed because the control process exited with error code. See "systemctl status docker.service" and "journalctl -xe" for details.
摘要: 先检查/usr/lib/systemd/system/docker.service文件中ExecStart配置有没有问题,如果配置正确,那么进行如下操作。 修改如下两配置: /etc/docker/daemon.json文件添加 { "storage-driver": "devicemapper"
阅读全文
posted @ 2021-11-17 15:17 _Lawrence
阅读(348)
评论(0)
推荐(0)
2021年11月16日
idea部署docker
摘要: 1、安装docker插件重启idea。 2、Dockerfile项目根目录创建 FROM java:8 ADD web-0.0.1-SNAPSHOT.jar app.jar EXPOSE 8080 ENTRYPOINT ["java","-jar","/app.jar"] 3、配置docker镜像与
阅读全文
posted @ 2021-11-16 10:22 _Lawrence
阅读(1237)
评论(0)
推荐(0)
2021年11月12日
centos卸载docker
摘要: 查询docker安装包: yum list installed | grep docker 卸载查询出的安装包,例: yum -y remove docker.x86_64 rm -rf /etc/systemd/system/docker.service.d rm -rf /var/lib/doc
阅读全文
posted @ 2021-11-12 17:08 _Lawrence
阅读(380)
评论(0)
推荐(0)
centos安装maven
摘要: 下载Maven wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.5.4/binaries/apache-maven-3.5.4-bin.tar.gz 解压和移动 tar vxf apache-maven-3.5.4-b
阅读全文
posted @ 2021-11-12 14:11 _Lawrence
阅读(712)
评论(0)
推荐(0)
centos8安装使用docker
摘要: 安装: 查看仓库的docker版本:yum list docker-ce --showduplicates | sort -r 如果查找docker版本列表失败的话执行如下操作,反之跳过如下操作。 下载docker-ce的repo curl https://download.docker.com/l
阅读全文
posted @ 2021-11-12 09:38 _Lawrence
阅读(294)
评论(0)
推荐(0)
2021年11月11日
centOS安装redis
摘要: 安装 yum install redis 启动 systemctl start redis 设置开机自启 systemctl enable redis 修改配置 打开/etc/redis.conf文件。 允许远程连接 找到下面这一行,注释掉: bind 127.0.0.1改为: #bind 127.
阅读全文
posted @ 2021-11-11 15:21 _Lawrence
阅读(98)
评论(0)
推荐(0)
windows和centOS传输文件
摘要: 下载pscp安装: https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html 传输命令:本地pscp.exe + 要传输的文件 + 服务器用户名+@IP:服务器接收的文件夹 示例:D:\PuTTY>pscp.exe d:\file2
阅读全文
posted @ 2021-11-11 11:36 _Lawrence
阅读(454)
评论(0)
推荐(0)
2021年11月9日
centos8安装mysql
摘要: 1. yum update // 下载mysql,保证网络连通 2. wget https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm // 下载mysql,保证网络连通 3. rpm -Uvh https://dev
阅读全文
posted @ 2021-11-09 15:45 _Lawrence
阅读(511)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
20
下一页
公告