ICode9

精准搜索请尝试: 精确搜索
  • docker安装neo4及py2neo的使用2020-03-31 12:54:09

    一、安装 #拉取容器 docker pull neo4j #拉取可能会很慢或中断,可以使用阿里云加速地址 vim /etc/docker/daemon.json #your_id你自己的阿里云ID号 --registry-mirror=https://{your_id}.mirror.aliyuncs.com #启动容器 docker run -it -d -p 7474:7474 -p 7687:7687 neo4j

  • Migrate repo from Gitlab to Github2020-03-17 18:00:25

    本文转自https://gist.github.com/mariozig/bd3bb50593e6d911946b # Assume we are in your home directory cd ~/ # Clone the repo from GitLab using the `--mirror` option $ git clone --mirror git@your-gitlab-site.com:mario/my-repo.git # Change into newly created

  • 官方源、镜像源汇总2020-03-08 15:54:40

    站点版 (一)、企业站 搜狐:http://mirrors.sohu.com/ 网易:http://mirrors.163.com/ 阿里云:http://mirrors.aliyun.com/ 腾讯:http://android-mirror.bugly.qq.com:8080/(仅针对APP开发的软件,限流,不推荐) 淘宝:http://npm.taobao.org/ (二)、教育站 上海交通大学:http://ftp.sjtu.edu.cn/h

  • 配置docker镜像加速2020-02-22 20:02:06

    1.找到阿里云镜像加速地址(https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors) https://XXX.mirror.aliyuncs.com 2. docker文件 other_args="--registry-mirror=https://XXX.mirror.aliyuncs.com" 3.servier docker restart 4.ps -ef|grep docker 如果 docker进

  • maven repository2020-02-04 17:50:53

    repository是远程下载组件的地址,可以存在于三个地方 1、setting.xml的profile中 2、pom.xml的profile中 3、pom.xml中 优先级从高到低也是这个顺序,而在同一块地方的多个repository之间的优先级是从上到下的顺序 不过个人觉得2和3没有必要同时存在,有3这个途径作为特殊项目需要的补

  • 在国内访问Maven仓库,连接速度太慢。下面是将中央仓库替换成阿里云的中央仓库的方法。2020-02-01 14:57:50

    统一修改仓库地址 可以直接修改Mavenconf文件夹中的setting.xml文件,或者在.m2文件夹下建立一个setting·xml文件。 setting.xml里面有个mirrors节点,用来配置镜像URL。mirrors可以配置多个mirror,每个mirror有id,name,url,mirrorOf属性。 id是唯一标识一个mirror name貌似没多大用,

  • Troubleshooting installation of debian os2020-01-24 12:54:23

    After trying debian on an old workstation, I find there are some pitfalls and tricks: It is recommended to install the minimal base system (with no GUI) using the USB installer first. Since installation of GUI is through network and improper configured m

  • httrack镜像网站(kali版与win版)2020-01-22 18:38:57

    kali镜像文件:https://pan.baidu.com/s/1U-NpeYc7EUDtDJQjVs6Mng kali版使用(kali自带) 终端中输入httrack回车 接下来是要求输入一个项目名称,自己填一个即可 保存的项目路径,这里选择根目录下的project文件夹 输入需要镜像的网站的url地址,这里直接将网站地址复制进去 第一

  • Mirroring an AIX volume group2020-01-21 13:42:57

    configure additional disks (if not yet recognized) smit -C Devices - Install/Configure Devices Added After IPL add disks to existing VG's smit -C System Storage Management - LVM - Volume Groups - Set Characteristics ... - Add a Physic

  • Nginx流量复制2020-01-08 16:52:41

    1. 需求 将生产环境的流量拷贝到预上线环境或测试环境,这样做有很多好处,比如: 可以验证功能是否正常,以及服务的性能; 用真实有效的流量请求去验证,又不用造数据,不影响线上正常访问; 这跟灰度发布还不太一样,镜像流量不会影响真实流量; 可以用来排查线上问题; 重构,假如服务做了重构,这也是

  • 58.对称的二叉树(python)2020-01-01 09:57:16

    题目描述 请实现一个函数,用来判断一颗二叉树是不是对称的。注意,如果一个二叉树同此二叉树的镜像是同样的,定义其为对称的。 1 class Solution: 2 def isSymmetrical(self, pRoot): 3 # write code here 4 def mirror(left,right): 5 if le

  • docker:更换docker的pull源,轻松pull2019-12-27 10:01:30

    #  将pull源进行更换vi  /etc/docker/daemon.json {    "registry-mirrors":[        "https://kfwkfulq.mirror.aliyuncs.com",        "https://2lqq34jg.mirror.aliyuncs.com",        "https://pee6w651.mirror.aliyuncs.com",        

  • 国内软件源地址2019-12-23 11:00:08

    国内软件源地址   网易云http://mirrors.163.com/ 阿里云http://mirrors.aliyun.com/ EPEL源是由 Fedora 社区打造,为 RHEL 及衍生发行版如 CentOS等提供高质量软件包的项目。装上了 EPEL,就像在 Fedora 上一样,可以通过 yum install 软件包名,即可安装很多以前需要编译

  • maven 中配置多个mirror的问题2019-12-13 16:03:40

          公司搭建的maven私服做镜像,有使用aliyun的镜像,还有其他地方的, 默认情况下配置多个mirror的情况下,只有第一个生效。那么我们可以将最后一个作为默认值,前面配置的使用环境变量动态切换。 通过  尝试settings.xml 使用变量解决。   <mirror> <id>central</

  • 二叉树的镜像(python)2019-12-09 19:02:49

    题目描述 操作给定的二叉树,将其变换为源二叉树的镜像。         1 class Solution: 2 # 返回镜像树的根节点 3 def Mirror(self, root): 4 # write code here 5 if root==None: 6 return None 7 #处理根节点 8

  • docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled2019-12-09 15:56:37

      故障描述: [root@docker01 ~]# docker run centos docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers). See 'docker run --help&#

  • Docker 换源2019-12-08 12:02:25

    近几天又折腾起 docker来了    我发现自己在拉镜像的时候,总是超时    然后百度了一下  说要换源   90sec的一个水友 推荐了我 阿里云的加速源    我看了还是免费就想试一下     讲一下过程吧 首先把docker打开  然后在windows命令行下执行  docker-machine ssh  

  • WSL-Ubuntu 安装 Apt-Mirror2019-10-26 22:02:50

    修改源 1 deb http://mirrors.yun-idc.com/ubuntu/ bionic main restricted universe multiverse2 deb http://mirrors.yun-idc.com/ubuntu/ bionic-security main restricted universe multiverse3 deb http://mirrors.yun-idc.com/ubuntu/ bionic-updates main restricted uni

  • oVirt镜像源2019-10-26 12:05:01

    Repository mirrors Mirroring oVirt repositories Do you want to become a mirror? Do you have some bandwidth to spare? Drop us a line at infa and tell us about yourself! You just need to pass us a public ssh key, and once set up you’ll be able to rsync f

  • 国内镜像源(转)2019-10-25 17:03:04

    开源软件系统官方源、镜像源Open Source 汇总,请注意这是一个总结,如果您自己搭建了一个小型开源镜像,这里并没有。以下列出的是包含大量不同镜像的站点。 具体配置中,我建议您使用大企业的镜像。大学的镜像有的只是内部使用,而且未必速度快的像您所期待的那样。同时,我建议您使用某些加

  • Linux系统下载2019-10-01 23:57:52

    1、Linux官方镜像 Deepin镜像 https://www.deepin.org/mirrors/releases/ Mint 镜像 https://www.linuxmint.com/mirrors.phpkernel 镜像站: http://mirrors.kernel.org/ Fedora 官方镜像站: http://mirrors.fedoraproject.org/publiclist https://torrents.fedoraproject.org/ http

  • 构建局域网YUM仓库2019-09-08 16:04:38

    修改yum源为阿里云源 检验阿里云源是否正常 [root@yum ~]# yum repolist Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com 安装相关软件 [root@yum ~

  • 二叉树的镜像2019-08-22 20:54:58

    题目描述 操作给定的二叉树,将其变换为源二叉树的镜像。 输入描述: 二叉树的镜像定义:源二叉树 8 / \ 6 10 / \ / \ 5 7 9 11 镜像二叉树 8 / \ 10 6 / \ / \ 11 9 7 5 来源牛客。 1 public void

  • CentOS使用yum时出现try other mirror错误时解决方案2019-08-22 17:02:17

    此非专业说明,只是提供可能性 尝试两个方案(逐一尝试,直至) 一、更新yum,输入 yum clean all yum makecache yum update 二、若不行,可能是因为DNS不稳定吧,因为yum安装时会从三个”repo源“(base,extras,updates)随机获取地址 ①编辑网络配置:vi /etc/sysconfig/network-scripts/ifcfg-eth0

  • Mac安装配置maven环境变量2019-08-21 17:02:57

    一:maven的下载 下载地址:http://maven.apache.org/download.cgi   maven下载文件释义:    Binary:编译之后的二进制文件   Source:表示可以查看源代码的,比Binary大一点   tar.gz archive:Linux、macOS系统使用   zip archive:windows系统使用     不需要看源代码我们就

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有