Myluzh Blog

CentOS7 ELK搭建

2022-3-21 myluzh Linux

0x01 ELK简介 ELK是三个开源软件的缩写,分别表示:Elasticsearch , Logstash, Kibana , 它们都是开源软件。新增了一个FileBeat,它是一个轻量级的日志收集处理工具(Agent),Filebeat占用资源少,适合于在各个服务器上搜集日志后传输给Logstash,官方也推荐此工具。 官方手册 https://www.elastic.co/cn/what-is/elk-stack https://www.elastic.co/guide/en/elasticsearch/reference/6.0/getting-started.html 1x01 准备工作 配置好yum源 wget http://mirrors.aliyun.com/repo/Centos-7.repo wget http://mirrors.aliyun.com/repo/epel-7.repo 关闭防火墙 systemctl stop(disable) firewalld 关闭SELinux SELINUX=disabled 1x02 安装java环境 查看java版本列表 ...

阅读全文>>

标签: centos elk

评论(0) (501)

CentOS利用VLMCSD部署本地KMS服务器

2021-10-17 myluzh Linux

利用VLMCSD部署本地KMS服务器 项目名称:VLMCSD 项目简介:KMS Emulator in C (Currently runs on Linux, Mac OS, iOS, Windows with or without Cygwin) 项目主页:https://github.com/Wind4/vlmcsd 软件下载:https://github.com/Wind4/vlmcsd/releases 部署本地KMS服务器:# 1.准备一个 Linux 环境 2.下载vlmcsd:wget https://github.com/Wind4/vlmcsd/releases/download/svn1113/binaries.tar.gz 3.解压:tar -zxvf binaries.tar.gz 4.查看Linux物理机的CPU信息:cat /proc/cpuinfo 5.挑选对应CPU版本的程序,一般为Intel:cd binaries/Linux/intel/static/ 6.修改权限:chmod u+x vlmcsd-x64-musl-static 7.运行vlmcsd:./...

阅读全文>>

标签: centos kms vlmcsd

评论(0) (591)

CentOS7-Zabbix5_Server/Agent 安装笔记

2021-9-8 myluzh Zabbix

官网文档5.0LTS https://www.zabbix.com/cn/download?zabbix=5.0&os_distribution=centos&os_version=7&db=mysql&ws=nginx 关闭防火墙或者允许端口通过都可以 firewall-cmd --zone=public --add-port=10051/tcp --permanent   # 开放Zabbix-server默认端口10051 systemctl disable firewalld #永久关闭防火墙 关闭selinux vim /etc/selinux/config SELINUX=disabled 添加zabbix源 rpm -Uvh https://mirrors.aliyun.com/zabbix/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum clean all 安装zabbix yum install zabbix-server-mysql ...

阅读全文>>

标签: centos zabbix

评论(0) (712)

CentOS7 安装GNOME桌面 开启VNC连接

2020-12-25 myluzh Linux

0x01安装GNOME桌面 1.更新系统 yum -y upgrade 2.安装必要的软件包 yum -y install grub2-efi fwupdate 3.安装GNOME桌面 yum -y groupinstall 'GNOME Desktop' 'Graphical Administration Tools' 4.如何卸载GNOME桌面? sudo yum groupremove "GNOME Desktop" 配置默认启动方式: 查看系统的2种启动模式: vi /etc/inittab //查询当前的默认设置: systemctl get-default //启动切换图形化界面: //使用startx命令必须在vmware里面或者virtualbox里面,不能在远程ssh连接工具(putty)上使用,不然会报错不能启动。 startx //设置默认启动为图形化界面: systemctl set-default graphical.target //设置默认启动为命令行界面: systemctl set-default multi-user.target //命令行界面...

阅读全文>>

标签: centos gnome vnc

评论(0) (984)

Linux 启动服务 systemctl命令

2020-12-19 myluzh Linux

systemctl is-enabled servicename.service #查询服务是否开机启动 systemctl enable *.service #开机运行服务 systemctl disable *.service #取消开机运行 systemctl start *.service #启动服务 systemctl stop *.service #停止服务 systemctl restart *.service #重启服务 systemctl reload *.service #重新加载服务配置文件 systemctl status *.service #查询服务运行状态

阅读全文>>

标签: centos linux ubuntu systemctl

评论(0) (837)

CentOS7安装谷歌bbr加速

2020-11-10 myluzh Linux

!测试环境为CentOS 7 x64。CentOS 6及以下版本不通用 0x01  yum系统更新(更新到7.3) yum update 0x02  查看系统版本 cat /etc/redhat-release 输出如下,则表示已升级到7.3 CentOS Linux release 7.3.1611 (Core) 0x03  安装elrepo并升级内核 rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm yum --enablerepo=elrepo-kernel install kernel-ml -y 正常情况下将输出如下: Transaction Summary ================================================================================ Insta...

阅读全文>>

标签: centos bbr

评论(0) (987)