摘要:
在父目录下 .idea文件里的 workspace.xml中 修改RunDashboard内容 <component name="RunDashboard"> <component name="RunDashboard"> <option name="configurationTypes"> <se 阅读全文
摘要:
attach Attach to a running container # 当前 shell 下 attach 连接指定运行镜像 build Build an image from a Dockerfile # 通过 Dockerfile 定制镜像 commit Create a new imag 阅读全文
摘要:
1.找到阿里云镜像加速地址(https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors) https://XXX.mirror.aliyuncs.com 2. docker文件 other_args="--registry-mirror=h 阅读全文
摘要:
centos6.8docker安装: 1.yum install -y epel-release 2.yum install -y docker-io (如果yum被锁定则强制采用rm -f /var/run/yum.pid关闭yum进程即可) 如果报错No package docker-io av 阅读全文
摘要:
下载获得redis-3.0.4.tar.gz后将它放入我们的Linux目录/opt /opt目录下,解压命令:tar -zxvf redis-3.0.4.tar.gz 解压完成后出现文件夹:redis-3.0.4 进入目录:cd redis-3.0.4 在redis-3.0.4目录下执行make命令 阅读全文
摘要:
方式一:yum方式下载安装 1、查找java相关的列表 yum -y list java* 或者 yum search jdk 2、安装jdk yum install java-1.8.0-openjdk.x86_64 3、完成安装后验证 java -version 4、通过yum安装的默认路径为: 阅读全文
摘要:
一、service方式 查看防火墙状态: [root@centos6 ~]# service iptables status iptables:未运行防火墙。 开启防火墙: [root@centos6 ~]# service iptables start 关闭防火墙: [root@centos6 ~ 阅读全文
摘要:
//1.进入my_test数据库 use my_test //2.向数据库的user集合中插入一个文档 db.users.insert({ username:"sunwukong" }); //3.查询user集合中的文档 db.users.find(); //4.向数据库的user集合中插入一个文 阅读全文
摘要:
SQL - 结构化查询语言 - 关系数据库全都同SQL来操作 1.安装MongoDB - 安装 - 配置环境变量 C:\Program Files\MongoDB\Server\3.2\bin - 在c盘根目录 - 创建一个文件夹 data - 在data中创建一个文件夹db - 打开cmd命令行窗 阅读全文
摘要:
public static JSONObject doFormDataPost(File file, String sURL) throws IOException { HttpClient context = new DefaultHttpClient(); HttpPost post = new 阅读全文