51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#TOS
centos7 卸载和安装最新版本docker-ce,配置阿里云加速
一、yum卸载、安装1、卸载老版本的docker及其相关依赖sudoyumremovedockerdocker-commoncontainer-selinuxdocker-selinuxdocker-engine2、安装yum-utils,它提供了yum-config-manager,可用来管理yum源sudoyumi...
代码星球
·
2020-12-18
centos7
卸载
安装
新版本
docker-ce
centos7共享文件夹到windows访问--samba
第一步:安装samba服务yuminstallsamba第二步:启动samba服务systemctlstartsmb查看samba的状态systemctlstatussmb看到Active就说明在运行中了第三步:关闭防火墙systemctlstopfirewalld.service//停止服务systemctldisa...
代码星球
·
2020-12-18
centos7
共享
文件夹
windows
访问
CentOS7 安装 MySQL
1、首先检查MySQL是否已安装yumlistinstalled| grepmysql如果有的话就全部卸载yum -y remove+数据库名称2、MySQL依赖libaio,所以先要安装libaioyumsearchlibaio #检索相关信息yuminstalllibaio&...
代码星球
·
2020-12-18
CentOS7
安装
MySQL
Centos7下实现免密码登录
一、生成密钥[root@master~]#ssh-keygenGeneratingpublic/privatersakeypair.Enterfileinwhichtosavethekey(/root/.ssh/id_rsa):Enterpassphrase(emptyfornopassphrase):Entersam...
代码星球
·
2020-12-18
Centos7
实现
密码
登录
centos7修改hostname和hosts
1、修改/etc/hostnamevi/etc/hostname打开之后的内容是:localhost.localdomain把它修改成想要的名字就可以,比如:master保存退出 2、修改/etc/hosts文件vi/etc/hosts打开之后的内容是:127.0.0.1 localho...
代码星球
·
2020-12-18
centos7
修改
hostname
hosts
centos7虚拟机克隆
第一步:克隆打开VMware,确认已经完成安装配置的centos7虚拟机在关闭状态。右键点击虚拟机,选择“管理”-“克隆”原始虚拟机名称为“master”,IP地址为“192.168.80.10” 然后下一步&nb...
代码星球
·
2020-12-18
centos7
虚拟机
克隆
CentOS查找目录或文件
查找目录:find/(查找范围)-name'查找关键字'-typed查找文件:find/(查找范围)-name查找关键字-print ·findpath-option[-print][-exec-okcommand]{}/;#-print将查找到的文件输出到标准输出#-execcommand{}...
代码星球
·
2020-12-18
CentOS
查找
目录
文件
centos7下使用yum安装pip
首先安装epel扩展源: yum-yinstallepel-release 更新完成之后,就可安装pip: yum-yinstallpython-pip 安装完成之后清除cache: yumcleanall这是在root用户时使用的命令,当前用户如果不具有root权限,加上sudo。安装完使用pip命令可能出...
代码星球
·
2020-12-18
centos7
使用
yum
安装
pip
centos7 启动docker失败--selinux-enabled=false
centos7,执行完安装命令:yuminstalldocker执行启动命令:systemctl startdocker ,报下面错误:Errorstartingdaemon:SELinuxisnotsupportedwiththeoverlay2graphdriveronthisker...
代码星球
·
2020-12-18
centos7
启动
docker
失败
--selinux-enabled
CentOS安装Git,并上传、下载
一、安装Gityuminstallgit二、生成SSH密钥ssh-keygen-trsa-C“youremailaddress”连续按3个回车(密码默认为空),得到id_rsa和id_rsa.pub文件,在/root/.ssh下说明生成成功三、添加密钥到Github打开 Github,...
代码星球
·
2020-12-18
CentOS
安装
Git
上传
下载
centos7通过阿里云配置docker加速镜像
针对Docker客户端版本大于1.10.0的用户您可以通过修改daemon配置文件/etc/docker/daemon.json来使用加速器:sudomkdir-p/etc/dockersudotee/etc/docker/daemon.json<<-'EOF'{"registry-mirrors":["h...
代码星球
·
2020-12-18
centos7
通过
阿里
配置
docker
CentOS7保留默认Python版本并安装更新Python2和Python3共存
CentOS 7默认的python版本是python2.7.5。因为yum依赖于默认的python版本的缘由,所以要先保留默认版本,并修改yum文件头部后,才能开始安装更新python2和python3两个最新版本。(python2和python3共存)一.保留默认python版本2.7.5,并修改yum头部...
代码星球
·
2020-12-18
CentOS7
保留
默认
Python
版本
centos7 Docker Compose 的安装
[root@localhost~]#curl-Lhttps://github.com/docker/compose/releases/download/1.8.1/docker-compose-`uname-s`-`uname-m`>/usr/local/bin/docker-compose%Total%Rece...
代码星球
·
2020-12-18
centos7
Docker
Compose
安装
centos7 docker镜像加速器配置
CentOS的配置方式略微复杂,需要先将默认的配置文件复制出来 /lib/systemd/system/docker.service->/etc/systemd/system/docker.service 然后再将加速器地址添加到配置文件的启动命令 重启Docker就可以了。cp-n...
代码星球
·
2020-12-18
centos7
docker
镜像
加速器
配置
centos7 Dockerfile安装nginx
1.写一个Dockerfile文件FROMcentosMAINTAINERapengapeng@apenglinux-002.comRUNyuminstall-ypcre-develwgetnet-toolsgcczlibzlib-develmakeopenssl-develADDhttp://nginx.org/do...
代码星球
·
2020-12-18
centos7
Dockerfile
安装
nginx
首页
上一页
...
38
39
40
41
42
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他