- 浏览: 46974 次
- 性别:
- 来自: 武汉
最新评论
文章列表
java连接Hbase数据库
http://www.zhimengzhe.com/shujuku/other/192875.html
Hbase列簇简单介绍
https://blog.csdn.net/wulantian/article/details/46786413
hbase family qualifier设置
https://blog.csdn.net/lucky_greenegg/article/details/51099189
hbase Java API 介绍及使用示例
https://blog.csdn.net/lifuxiangcaohui ...
https://blog.csdn.net/zhangdehua678/article/details/78913839
https://www.cnblogs.com/bianzy/p/5822426.html
https://blog.csdn.net/zhangdehua678/article/details/78913839
https://www.cnblogs.com/betterboyz/p/8669879.html
https://www.cnblogs.com/study-everyday/p/6257127.html
https://blog.csdn.net/jaedong4j/article/details/50888275
1、yum list redis --查看是否有redis yum 源
2、yum install epel-release --下载fedora的epel仓库
3、 yum install redis -- 安装redis数据库
配置: /etc/redis.conf
应用: /usr/bin/redis*
find / -name "redis*"
4、service redis start Redirecting to /bin/systemctl start redis.service --开启re ...
1最近项目上线部署的时候,发现一个问题。Tomcat在启动过程中耗费了很长的时间。查看日志,发现耗时最长的地方是:
INFO [localhost-startStop-1] org.apache.catalina.util.SessionIdGeneratorBase.createSecureRandom Creation of SecureRandom instance for session ID generation using [SHA1PRNG] took [1,693,533] milliseconds.在网上查找资料后确定,该问题是由于tomcat的session id的生成 ...
nginx的配置、虚拟主机、负载均衡和反向代理
- 博客分类:
- nginx
nginx.conf配置文件详解
其实,对比,apache的配置文件,它的相对比较清晰和简单,之前觉得很难,现在沉下心来想想,其实很简单。大致的分块下,基本就分为以下几块:
main
MAC OS上安装nginx
- 博客分类:
- nginx
安装工具:
homebrew(还没用过的小伙伴可以点链接进行了解或者自行百度)
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
步骤:
1. brew相关
brew update //更新brew
brew search nginx //查询要安装的软件是否存在
brew info nginx //查看nginx安装信息
2. 正式安装
brew insta ...
nginx配置详解1
- 博客分类:
- nginx
#定义Nginx运行的用户和用户组,来指定Nginx Worker进程运行用户以及用户组,默认由nobody账号运行
user ***;
#nginx进程数,建议设置为等于CPU总核心数。
worker_processes 4;
#全局错误日志定义类型,[ debug | info | notice | warn | error | cr ...
Tomcat在Linux上的安装与配置
以下使用的Linux版本为: Redhat Enterprise Linux 7.0 x86_64,Tomcat版本为tomcat-7.0.54.1.下载JDK与Tomcat. jdk下载地址: http://www.oracle.com/technetwork/java/javase/downloads/jdk7-downloads-1880260.html tomcat下载地址:
针对该信息的显示是由一个jar包控制的,该jar包存放在 Tomcat 安装目录下的lib目录下,名称为 catalina.jar。
通过修改 org/apache/catalina/util/ServerInfo.properties 文件中的 serverinfo 字段来实现来更改我们tomcat的版本信息。
Linux下如何在不解压jar包查看或修改配置文件
https://jingyan.baidu.com/article/d2b1d102a9dc955c7e37d487.html
linux中提示没有unzip命令解决方法
tomcat7从 7.0.63开始 ,
tomcat8从 8.0.23版本开始,
tomcat支持在它自带的web.xml里配置HttpHeaderSecurityFilter,这是一个可选项,默认不开启该filter,开启后可支持的配置项如下:
<filter>
<filter-name>httpHeaderSecurity</filter-n ...
http://www.jb51.net/article/110395.htm
my.cnf是mysql启动时加载的配置文件,一般会放在mysql的安装目录中,用户也可以放在其他目录加载。
安装mysql后,系统中会有多个my.cnf文件,有些是用于测试的。
使用locate my.cnf命令可以列出所有的my.cnf文件
命令
locate my.cnf
输出
启用了不安全的HTTP方法解决办法 IBM APPSCAN
http://www.bubuko.com/infodetail-440685.html
安全风险:
可能会在Web 服务器上上载、修改或删除Web 页面、脚本和文件。
可能原因:
Web 服务器或应用程序服务器是以不安全的方式配置的。
修订建议:
如果服务器不需要支持WebDAV,请务必禁用它,或禁止不必要的HTTP 方法。
方法简介:
centos rpm安装mysql
- 博客分类:
- linux
https://www.cnblogs.com/jintheway/p/6542059.html
https://blog.csdn.net/fanshujuntuan/article/details/78077433
https://blog.csdn.net/liuyifeng1920/article/details/49800033
1. 解决依赖冲突
yum remove mysql-libs
2. 安装依赖
yum -y install libaio
3.安装mysql
rpm -ivh mysql-community-commo ...
http://blog.1024code.com/120.html
CentOS7出现Unit iptables.service could not be found
CentOS7默认的防火墙不是iptables,而是firewalle.
出现此情况可能是iptables防火墙未安装。
https://blog.csdn.net/bbwangj/article/details/74502967
centos中iptables和firewall防火墙开启、关闭、查看状态、基本设置等