CentOS7 虚谷数据库 单机版部署
单机版最低配置:
安装环境配置
1.CPU设置
cat /sys/devices/system/cpu/smt/active
如果是0,表示超线程已关闭;返回值是1,表示超线程已开启。
切换超线程状态:
(关闭)
echo off > /sys/devices/system/cpu/smt/control
(开启)
echo on > /sys/devices/system/cpu/smt/control
2.网络参数设置
vim /etc/sysctl.conf
net.core.rmem_default = 2097152
net.core.wmem_default = 2097152
net.core.rmem_max = 8388608
net.core.wmem_max = 8388608
3.运行环境依赖包与服务
yum -y install vsftpd ntp libio net-snmp perf gcc gdb sysstat
systemctl start snmpd
systemctl enable snmpd
systemctl status snmpd
4.内核ulimit参数设置:
vim /etc/profile
ulimit -s 20480
ulimit -n 10240
source /etc/profile
5.关闭防火墙与selinux
systemctl stop firewalld.service
systemctl disable firewalld.service
systemctl status firewalld.service
sed -i "s/SELINUX=enforcing/SELINUX=disabled/g" /etc/selinux/config
setenforce 0
getenforce
sestatus
6.端口检查
lsof -i :5138
显示为空,端口未被占用
虚谷数据库部署
1.上传安装包到linux服务器,我这就随便放根目录了,给读写执行权限。
2.安装包解压
tar -zxvf XuGuServer-12_20230630-trial-linux-x64.tar.gz
3.启动数据库
4.查看启动文件
5.登录数据库
6.看一下数据库
原文地址:https://blog.csdn.net/dnuiking/article/details/140475053
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!