
Linux
文章平均质量分 57
昵称加载中oO
这个作者很懒,什么都没留下…
展开
-
filebeat采集nginx的配置
# Module: nginx# Docs: https://www.elastic.co/guide/en/beats/filebeat/7.1/filebeat-module-nginx.html- module: nginx # Access logs access: enabled: true # Set custom paths for the log files. If left empty, # Filebeat will choose the path...原创 2020-05-30 21:08:10 · 737 阅读 · 0 评论 -
jdk在Linux环境下如何配置与安装
1.清理系统自带jdk:rpm -qa | grep jdkyum remove jdk-1.7.0_80-fcs.x86_64 (卸载命令)2.下载jdk:http://www.oracle.com/technetwork/java/javase/archive-139210.html3.安装jdk:sudo rpm -ivh jdk-7u80-linux-x64....原创 2018-09-04 22:30:45 · 176 阅读 · 0 评论 -
tomcat在Linux环境下如何配置与安装
备注安装前得先安装jdk(https://blog.youkuaiyun.com/qq_38269541/article/details/82391459)1.下载tomcat:(https://tomcat.apache.org)wget http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-8/v8.5.33/bin/apache-tom...原创 2018-09-04 22:58:22 · 544 阅读 · 0 评论 -
maven在Linux环境下如何配置与安装
备注安装前得先安装jdk(https://blog.youkuaiyun.com/qq_38269541/article/details/82391459)1.下载maven:(http://maven.apache.org/download.cgi)wgethttp://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.0.5/binaries...原创 2018-09-04 23:22:38 · 816 阅读 · 1 评论 -
nginxt在Linux环境下如何配置与安装
nginx安装环境: nginx是C语言开发,建议在linux上运行 1.gcc 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install gcc-c++ 2.PCRE PCRE(Perl Compatible Regular Expressions)是一个Perl库...原创 2018-09-05 00:03:06 · 470 阅读 · 0 评论 -
mysql在Linux环境下如何配置与安装
1.准备工作:1.1 下载mysql以及cmakewget http://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-5.5.14.tar.gz wget https://cmake.org/files/v3.9/cmake-3.9.1.tar.gz 1.2 查看...原创 2018-09-05 00:24:42 · 133 阅读 · 0 评论 -
记录一下:redis的安装以及使用
redis安装:[root@localhost setup]# yum -y install gcc gcc-c++ //安装c编译环境[root@localhost setup]# wget http://download.redis.io/releases/redis-3.0.0.tar.gz[root@localhost setup]# tar zxv...原创 2018-09-18 21:33:14 · 153 阅读 · 0 评论