Open yuyanghui opened 3 years ago
在harbor启动目录(./install/sh的目录)下面有一个隐藏目录/data 可以rm -rf /data/* 多次重新安装的时候会在里面存在上次初始化后遗留的数据导致下次初始化的时候存在上次的数据导致初始化失败
Centos7安装DockerCE
说明 以下使用的系统为centos7,64位,镜像为CentOS-7-x86_64-Minimal-1804,所有操作以root用户操作
安装Docker官方源 2.1 安装yum工具集 yum install -y yum-utils 2.2 安装Docker源 yum-config-manager --add-repo \ https://download.docker.com/linux/centos/docker-ce.repo 2.3 更新yum缓存 yum makecache fast
安装Docker yum install -y docker-ce
启动Docker systemctl start docker
设置Docker开机自启 systemctl enable docker
prerender-spa-plugin出现Failed to launch chrome 解决方案
1、确保 prerender-spa-plugin 配置中不包含headless 和 inject配置项
new PrerenderSPAPlugin({ routes: ["/future"], staticDir: path.join(__dirname, '../build'), renderer: new Renderer({ renderAfterTime: 5000 }) }) 2、在Linux 系统下安装依赖包,命令如下:
yum install libXScrnSaver atk java-atk-wrapper at-spi2-atk gtk3 libXt -y
在CentOS 8上安装Python 2
Python 2软件包也包含在默认的CentOS 8存储库中。
要安装Python 2,请输入以下命令:
$ sudo dnf install python2
通过键入以下命令验证安装:
$ python2 --version
输出应如下所示内容:
Python 2.7.15
要执行Python 2,请输入python2,然后运行pip并输入pip2。
设置默认Python版本(Unversioned Python命令)
如果你有希望在系统路径中找到python命令的应用程序,则需要创建unversioned python命令并设置默认版本。
要将Python 3设置为系统范围内的非版本化python命令,请使用Alternatives实用程序:
$ sudo alternatives --set python /usr/bin/python3
对于Python 2,输入:
$ sudo alternatives --set python /usr/bin/python2