撸了今年阿里、头条和美团的面试,我有一个重要发现.......>>>
1 先解压 elasticsearch-7.3.0-windows-x86_64 安装包
2 再window下运行 elasticsearch.bat 命令。
3 需要安装nodeJS (node-v10.16.3-x64.msi)
4 然后再cmd中输入 npm install -g grunt-cli (为了将grunt设置为全局命名)
5 再解压 elasticsearch-head-master (可视化界面)
6 再elasticsearch-head-master目录下运行 grunt server 报错,需要执行:npm install 安装 grunt命令
7 然后再浏览器中输入 http://localhost:9100/
8 再 elasticsrarch/config/elasticsearch.yml 文件中设置 跨域访问 # 为了允许跨域访问 (不要加中文) http.cors.enabled: true http.cors.allow-origin: "*"