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)
(483)
2022-3-14 myluzh
Windows
If you want to remove the “Show More Options” entry from Windows 11 Context Menu and restore classic Right Click menus in Windows 11 you can use following registry entries.
Restore full right click context menu in Windows 11 via Registry
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32]
@=””
Get the default Windows 11 Context Menu back via Registry
Windows Registry Editor Version 5.00
[-HKEY...
阅读全文>>
标签: win11右键
评论(0)
(814)
2022-2-27 myluzh
Windows
保存为bat放在启动目录即可
if "%1"=="h" goto begin
start mshta vbscript:createobject("wscript.shell").run("""%~nx0"" h",0)(window.close)&&exit
:begin
#关闭代理
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD /d 0 /f >nul 2>nul
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyServer /d "" /f >nul 2>nul
#开启代理
#reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v ProxyEnable /t REG_DWORD ...
阅读全文>>
标签: windows 关闭代理
评论(0)
(600)
2022-1-12 myluzh
Windows
在WIN7、WIN10操作系统用WebDAV映射网络驱动器需要的操作
如果WebDAV不是https的,win7默认是添加不上的,需要修改注册表使得WIN7同时支持http和https,默认只支持https,然后重启服务
某一服务器,配置好了WebDAV。用苹果电脑作客户端可以成功添加网络盘,而WIN7却不行。
后查资料,根据资料操作解决了这一问题。
资料原文如下:
如果WebDAV不是https的,win7、WIN10默认是添加不上的,需要修改注册表:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
把BasicAuthLevel 值改成2,即同时支持http和https,默认只支持https,然后重启服务: (WIN + R)
net stop webclient
net start webclient
最后再次通过点“计算机”-右键-“映射网络驱动器”,就可以添加成功了。
阅读全文>>
标签: webdav
评论(0)
(1574)
2022-1-2 myluzh
NOTE
DS3617xs
半洗白序列号
序列号:1510LWN119500
全洗白序列号
序列号:1710ODN069200
MAC:0011327367BF
DS918+
半洗白序列号
序列号:1780PDN216001
全洗白序列号
序列号:DGPH3JE6U4EAQ
MAC:0211321ADBC9
阅读全文>>
标签: dsm.群晖 洗白
评论(0)
(9757)
2021-12-31 myluzh
RouterOS
用的就是url gb2313编码
import urllib
from urllib import parse
def url_gb2312(t_type, text):
if t_type == "encode":
text = urllib.parse.quote(text.encode('gb2312'))
text = text.replace("%", "\\")
return text
if t_type == "decode":
text = text.replace("\\", "%")
text = urllib.parse.unquote(text, encoding='gb2312')
return text
# 编码
t = url_gb2312("encode", "哈哈哈")
print(t) # 输出 \B9\FE\B9\FE\B9\FE
# 解码
t = url_gb2312("decode", "\B9\FE\B9\FE\B9\FE")
pr...
阅读全文>>
标签: python routeros 中文
评论(0)
(1364)