随笔分类 -  Linux

摘要:CentOS7下安装elsticsearch、kibana服务 一、操作系统配置 1.1 文件句柄配置 vim /etc/security/limits.conf 文件中新增 # End of file # 线程进程数 * soft nproc 65535 * hard nproc 65535 # 阅读全文
posted @ 2020-07-30 23:45 离散音符 阅读(569) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/zyl290760647/article/details/83752877 阅读全文
posted @ 2020-07-17 14:49 离散音符 阅读(128) 评论(0) 推荐(0)
摘要:准备: 【 win10 64位 VirtualBox-6.0.12-133076-Win vagrant_2.2.6_x86_64 centos7 XShell4】 下载安装vagrant 01 访问Vagrant官网 https://www.vagrantup.com/ 02 点击Download 阅读全文
posted @ 2020-07-13 10:17 离散音符 阅读(243) 评论(0) 推荐(0)
摘要:准备工具 进行安装前,需要一些准备工具。大家可以参考我的: 软件:VMware ,我的是15.5PRo,感兴趣的可以自己到官网下载。https://www.vmware.com/cn/products/workstation-pro.html 镜像文件的下载:CentOS7;https://wiki 阅读全文
posted @ 2020-06-17 14:26 离散音符 阅读(3187) 评论(0) 推荐(0)
摘要:Get请求 curl命令模拟Get请求: 1、使用curl命令: 1 2 3 4 curl "http://www.baidu.com" 如果这里的URL指向的是一个文件或者一幅图都可以直接下载到本地 curl -i "http://www.baidu.com" 显示全部信息 curl -I "ht 阅读全文
posted @ 2019-11-11 11:07 离散音符 阅读(777) 评论(0) 推荐(0)
摘要:mysql 导出数据或结构 语法说明 mysqldump -h 数据库地址 -u用戶名 -p密码 -d 数据库名 表名 > 脚本名; 导出整个数据库结构和数据 mysqldump -uroot -p database > dump.sql 导出整个数据库结构(不包含数据) mysqldump -u 阅读全文
posted @ 2019-08-13 18:57 离散音符 阅读(1070) 评论(0) 推荐(0)