欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux服务器配置

程序员文章站 2022-04-30 23:17:31
...

安装jdk

附:安装jdk

配置本地yum源

附:配置本地yum源

补包

yum install gcc gcc-c++ make cyrus-sasl-devel openssl-devel zlib-devel readline-devel sqlite-devel readline-devel.x86_64 boost-devel* gperf libevent-devel* libuuid-devel* automake autoconf libtool pcre-devel openssl-devel -y

关闭防火墙

service iptables stop
chkconfig iptables off 

# 若以上命令异常,尝试以下命令
sudo systemctl stop firewalld
sudo systemctl disable firewalld
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.servce

关闭selinux

setenforce 0
vi /etc/selinux/config
# 修改以下内容
SELINUX=disabled

免密登录

# 若没有该目录,先执行一次ssh localhost
cd ~/.ssh/ 
# 会有提示,都按回车就可以
ssh-****** -t rsa 
# 加入授权
cat id_rsa.pub >> authorized_keys
# 修改文件权限
chmod 600 ./authorized_keys

修改主机名

centos6

vi /etc/sysconfig/network
# 如:hostname=hd01,主机名最好不要包含下划线、横杆等特殊字符

vi /etc/hosts
# 改成以下内容
127.0.0.1   localhost
::1         localhost
本机ip       hd01

# 保存后需要重启才生效,输入下面命令重启服务器
reboot

centos7

vi /etc/hostname
# 如:hd01,主机名最好不要包含下划线、横杆等特殊字符(永久有效)

# 或执行以下语句(永久有效)
hostnamectl set-hostname hd01

vi /etc/hosts
# 改成以下内容
127.0.0.1   localhost
::1         localhost
本机ip       hd01

# 保存后需要重启才生效,输入下面命令重启服务器
reboot

升级python

附:升级python

解决:bootstrap checks failed

vi /etc/security/limits.conf
添加如下内容:
* soft nofile 65536
* hard nofile 65536
* soft nproc 4096
* hard nproc 4096

解决:max number of threads [1024]

vi /etc/security/limits.d/90-nproc.conf
修改如下内容:
* soft nproc 1024
#修改为
* soft nproc 4096

解决:max virtual memory areas vm.max_map_count [65530]

vi /etc/sysctl.conf
添加下面配置:
vm.max_map_count=655360
并执行命令:
sysctl -p
然后,重新启动elasticsearch,即可启动成功。