准备工作:
-
安装docker
1、Docker 要求 CentOS 系统的内核版本高于 3.10 ,查看本页面的前提条件来验证你的CentOS 版本是否支持 Docker 。
通过 uname -r 命令查看你当前的内核版本
uname -r
2、使用 root 权限登录 Centos。确保 yum 包更新到最新。
yum update
3.安装需要的软件包, yum-util 提供yum-config-manager功能,另外两个是devicemapper驱动依赖的
yum install -y yum-utils device-mapper-persistent-data lvm2
4.设置yum源
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
- 国外镜像一般很难访问,建议配置阿里云镜像。
yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
5.可以查看所有仓库中所有docker版本,并选择特定版本安装
yum list docker-ce --showduplicates | sort -r
6.安装docker
yum install docker-ce
- docker 换源
默认没有daemon.json, 直接创建即可
sudo vim /etc/docker/daemon.json
cv
{
"registry-mirrors":[
"http://docker.mirrors.ustc.edu.cn",
"http://hub-mirror.c.163.com",
"http://registry.docker-cn.com"
] ,
"insecure-registries":[
"docker.mirrors.ustc.edu.cn",
"registry.docker-cn.com"
]
}
7.启动并加入开机启动
systemctl start docker
systemctl enable docker
8.验证安装是否成功(有client和service两部分表示docker安装启动都成功了)
docker version
现在可以安装Grid Studio了
- 下载gridstudio
mkdir /root/Grid -p
cd /root/Grid
执行git clone https://github.com/ricklamers/gridstudio
- 设置文件权限
chmod 777 gridstudio
- 停止firewall,否则外边浏览器无法访问(该步骤建议暂时不进行操作)
systemctl stop firewalld.service
启动: systemctl start firewalld
关闭: systemctl stop firewalld
查看状态: systemctl status firewalld
开机禁用 : systemctl disable firewalld
开机启用 : systemctl enable firewalld
- run.sh
. ./run.sh
安装完成后用自己的服务器IP + 你的端口号在浏览器打开
默认账号密码都为: admin
结束
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:docker 安装 GridStudio - Python技术站