赞
踩
博主在首次安装过程中,遇到了一个错误提示:
Loaded plugins: fastestmirror, langpacks
Repository epel is listed more than once in the configuration
Bad id for repo: mirrors.aliyun.com_docker-ce_linux_centos_docker-ce.xn--repo(-qh2hy45ghw9f4mi, byte = ( 60
You need to be root to perform this command.
You need to be root to perform this command.
权限问题
所以我们首先切换到root账户的方法,再开始安装。
(1)sudo 命令
这样输入当前管理员用户密码就可以得到超级用户的权限。但默认的情况下5分钟root权限就失效了。
(2)sudo -i
通过这种方法输入当前管理员用户的密码就可以进到root用户。
(3)如果想一直使用root权限,要通过su切换到root用户。
(重设置root用户的密码:)
sudo passwd root
切换到root用户
su
输入root,
输入用户的密码即可。
当然,如果想从root用户切换回一般用户,则可使用 su -val(一般用户名)
而当你再次切回到root用户,则只需要键入exit,再次输入exit则回到最初的用户下
uname -a
yum update
这里选用阿里仓库为例:
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
查看所有可安装的额版本:
yum list docker-ce --showduplicates | sort -r
安装
yum install docker-ce-18.03.1.ce
启动
systemctl start docker
设置开机启用
systemctl enable docker
查看版本
docker version
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。