码迷,mamicode.com
首页 >  
搜索关键字:conf    ( 25562个结果
docker 安装mysql5.7 加my.cnf
重点,复制之前的my.cnf 要能用,touch一个是不行的; 1、先新建文件夹: mkdir -p /docker/mysql/{logs,conf,data} 2、获取镜像:docker pull mysql:5.7 3、启动: docker run -p 3306:3306 --privile ...
分类:数据库   时间:2020-04-16 19:37:54    阅读次数:120
HBase集群搭建
准备工作 需要先安装好Zookeeper集群和Hadoop集群 Zookeeper集群启动 Hadoop集群启动 HBase集群搭建 HBase解压 配置文件 hbase env.sh hbase site.xml regionservers 将hadoop的hdfs site.xml和core s ...
分类:其他好文   时间:2020-04-16 19:33:00    阅读次数:61
安装Microsoft Visio 2016,激活的报错
Microsoft Visio 2016安装激活教程 我在安装序列号的时候出现了报错。 The Software Licensing Service reported that the product SKU is not found. 借鉴了网上大神的批处理文件。将下面的文字放入到一个记事本文件里 ...
分类:其他好文   时间:2020-04-16 19:31:06    阅读次数:525
Linux查看某个端口的连接数
Linux查看某个端口的连接数 一、查看哪些IP连接本机 二、查看TCP连接数 1)统计80端口连接数 2)统计httpd协议连接数 3)统计已连接上的,状态为“established 4)、查出哪个IP地址连接最多,将其封了 实例: 1、查看Apache当前并发访问数: 对比httpd.conf中 ...
分类:系统相关   时间:2020-04-16 15:31:44    阅读次数:96
RedisUtil,总结使用Redis的工具类
package com.shd.core.util; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.Objec ...
分类:其他好文   时间:2020-04-16 15:24:43    阅读次数:50
【设计模式】简单工厂模式一
面向过程->面向对象 ?如何实现简单的计算器功能 如计算俩个数字的和差之类,我们需要数字numbe_a、数字number_b、运算符operator以及结果result 面向过程 class Operation: number_a = input("请输入第一个数字:") number_b = in ...
分类:其他好文   时间:2020-04-16 13:17:35    阅读次数:63
typescript入门第一课
https://www.jianshu.com/p/0e37a793ac3ahttps://www.cnblogs.com/xiaoxiaochengxuyuan/p/6137574.html typescript开发的准备工作: 1.准备工作1.1安装node.js (www.nodejs.cn) ...
分类:其他好文   时间:2020-04-16 01:03:38    阅读次数:77
4.15
在高保护模式下,完全不留操作痕迹删除:shred -zvnu 文件名 z:0填充 v:进度条 n:覆盖次数 u:删除 批量改名:rename conf(后缀名) conf.bak(要改的后缀名) * 变回去:rename .bak "" * 硬链接:与原文件相同 ln 问题:若有个大文件需要删除但会 ...
分类:其他好文   时间:2020-04-16 00:52:46    阅读次数:79
nginx配置域名访问时域名后出现两个//
nginx配置域名访问时域名后出现两个// server { listen 80; server_name wx.pyxrsj.cn; include /etc/nginx/default.d/*.conf; location / { proxy_pass http://localhost:8080 ...
分类:其他好文   时间:2020-04-16 00:34:22    阅读次数:151
windows下的eclipse运行hdfs程序时报错 (null) entry in command string: null chmod 0644
在Windows操作系统中使用eclipse本地运行hadoop的hdfs程序, FileSystem local = FileSystem.getLocal(conf); 使用 FSDataOutputStream out = local.create(localFile); 创建本地文件输出流时 ...
分类:Windows程序   时间:2020-04-15 21:08:16    阅读次数:170
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!