上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 41 下一页
摘要: 问题: 有一段时间没有用码云了,当输入 git push -u origin master命令出现Please make sure you have the correct access rights and the repository exists.错误, 原因: 是git服务器没有发现存储本地 阅读全文
posted @ 2021-01-14 23:52 1769987233 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 简介: 进入正在运行的Docker容器的4种方式 在使用Docker创建了容器之后,如何进入该容器呢? 进入Docker容器比较常见的几种做法如下: 使用docker attach 使用SSH 使用nsenter 使用exec 一、使用docker attach进入Docker容器 Docker提供 阅读全文
posted @ 2021-01-14 20:57 1769987233 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 1、找到容器对应的ID 使用docker ps命令找到对应的镜像id 2、根据容器id进入到对应文件夹 执行命令:docker exec -it 镜像id /bin/bash 3、进入对应目录(以MySQL为例) 执行命令cd /etc/mysql 4、下载vim 这里要下载vim,不然无法对文件进 阅读全文
posted @ 2021-01-14 20:54 1769987233 阅读(3751) 评论(0) 推荐(1) 编辑
摘要: 执行go build的文件报错: [root@iZf8z9gs5xht62gcoz8u81Z testproject]# nohup: ignoring input and redirecting stderr to stdout nohup: failed to run command ‘main 阅读全文
posted @ 2021-01-09 13:04 1769987233 阅读(263) 评论(0) 推荐(0) 编辑
摘要: 启动mysql时 systemctl start mysql.service 提示 Failed to start mysqld.service: Unit not found 解决方法 yum install -y mariadb-server systemctl start mariadb.se 阅读全文
posted @ 2021-01-01 23:08 1769987233 阅读(523) 评论(0) 推荐(0) 编辑
摘要: 查看python安装路径的方法有很多,如: 方法一: whereis python 查看所有python的路径 方法二: which python 查看当前使用的python路径 方法三:Bash进入Python交互模式,输入如下代码: import sys print sys.path 打印所有p 阅读全文
posted @ 2020-11-12 02:52 1769987233 阅读(773) 评论(0) 推荐(0) 编辑
摘要: 下面一段代码,实现了最简单的 Web 服务器: // main.go package main import ( "fmt" "log" "net/http" ) // 处理主页请求 func index(w http.ResponseWriter, r *http.Request) { // 向客 阅读全文
posted @ 2020-11-12 01:49 1769987233 阅读(515) 评论(0) 推荐(0) 编辑
摘要: Linux查看登录IP地址 who [root@test-host ~]# who root pts/0 2021-03-06 18:00 (#登录IP地址) netstat -lnta ss -lnta [root@tes-thost ~]# netstat -lnta Active Intern 阅读全文
posted @ 2020-11-11 22:05 1769987233 阅读(519) 评论(0) 推荐(0) 编辑
摘要: 使用mkfs.ext4默认参数格式化磁盘后,发现格式化时间特别长,并且格式化会占用磁盘很大的空间。 例如2TB的磁盘格式化会占用10分钟左右时间,并占用30G左右的磁盘空间。 究其原因,原来inode会占用磁盘空间,每个inode占用256b大小空间。 默认情况下,mkfs2fs会为每16kb的磁盘 阅读全文
posted @ 2020-11-05 22:20 1769987233 阅读(2306) 评论(0) 推荐(0) 编辑
摘要: 在命令行可以一次执行多个命令,有以下几种: 1.每个命令之间用;隔开 说明:各命令的执行结果,不会影响其它命令的执行。换句话说,各个命令都会执行, 但不保证每个命令都执行成功。 cd /home/PyTest/src; python suning.py 2.每个命令之间用&&隔开 说明:若前面的命令 阅读全文
posted @ 2020-11-03 23:18 1769987233 阅读(978) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 41 下一页