CentOS安装openjdk和elasticsearch

CentOS安装openjdk

文章目录

一、yum

1.1search

powershell 复制代码
yum search java | grep jdk

1.2安装openjdk

[root@test ~]# yum install java-1.8.0-openjdk -y

查看openjdk版本

[root@test ~]# java -version

二、elasticsearch的启动和关闭

2.1启动

切换到elasticsearch安装目录的bin目录下,执行如下命令即可

切换es的用户

powershell 复制代码
./elasticsearch -d

2.2关闭

查询java进程

powershell 复制代码
[elasticsearch@localhost bin]$ ps -ef|grep java

kill -9 进程号 即可关闭

2.3添加服务

[elasticsearch@localhost system]$ pwd

/etc/systemd/system

vim es.service

powershell 复制代码
[Unit]
Description=es.service
After=network.target
[Service]
LimitNOFILE=infinity
User=elasticsearch
Group=elasticsearch
Type=forking
ExecStart=/data/elasticsearch/bin/elasticsearch -d
PrivateTmp=True
[Install]
WantedBy=multi-user.target
powershell 复制代码
重载系统服务
systemctl daemon-reload
加入开机自启
systemctl enable es.service
# 启动redis服务
systemctl start es.service 
# 停止redis服务
systemctl stop es.service
# 查看redis服务状态
systemctl status es.service
相关推荐
Elastic 中国社区官方博客8 小时前
释放专利力量:Patently 如何利用向量搜索和 NLP 简化协作
大数据·数据库·人工智能·elasticsearch·搜索引擎·自然语言处理
Diamond技术流11 小时前
从0开始学习Linux——远程连接工具
linux·学习·centos·ssh·xshell·ftp
Shenqi Lotus15 小时前
ELK-ELK基本概念_ElasticSearch的配置
elk·elasticsearch
yeye1989122416 小时前
10-Query & Filtering 与多字符串多字段查询
elasticsearch
Narutolxy18 小时前
精准优化Elasticsearch:磁盘空间管理与性能提升技巧20241106
大数据·elasticsearch·jenkins
188_djh19 小时前
# Python基础到实战一飞冲天(一)--linux基础(一)
linux·开发语言·python·ubuntu·centos·os·operationsystem
Jeffrey侠客1 天前
.Net Core 6.0 WebApi在Centos中部署
linux·centos·.netcore
WiFiMing1 天前
nginx的基本安装与服务器配置
linux·运维·centos
华纳云IDC服务商2 天前
CentOS系统中查看内网端口映射的多种方法
linux·运维·centos
光芒再现dev2 天前
CentOS—OpenEulerOS系统联网指南
linux·运维·centos