首页 > 系统相关 >linux

linux

时间:2022-11-29 14:45:29浏览次数:36  
标签:no -- max redis nacos linux yes

ssh端口:65534

用户:

user: fengzi
password: Huawei@123
root passwd: tzHKx4sdDXURmsDd
su root

systemctl

nacos安装:

docker pull nacos/nacos-server
docker run --env MODE=standalone --name  nacos --restart=always  -d -p 8848:8848 nacos/nacos-server

访问 ip:8848/nacos 即可

用户名:nacos

密码:nacos

redis安装:

docker pull redis
cd /home/fengzi
mkdir redis
cd redis
mkdir data
mkdir conf
cd conf
vim redis.conf
# bind 192.168.1.100 10.0.0.1
# bind 127.0.0.1 ::1
# bind 127.0.0.1

protected-mode no

port 6379

tcp-backlog 511

requirepass SKr8xYtcEPh3UNMr

timeout 0

tcp-keepalive 300

daemonize no

supervised no

pidfile /var/run/redis_6379.pid

loglevel notice

logfile ""

databases 30

always-show-logo yes

save 900 1
save 300 10
save 60 10000

stop-writes-on-bgsave-error yes

rdbcompression yes

rdbchecksum yes

dbfilename dump.rdb

dir ./

replica-serve-stale-data yes

replica-read-only yes

repl-diskless-sync no

repl-disable-tcp-nodelay no

replica-priority 100

lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
replica-lazy-flush no

appendonly yes

appendfilename "appendonly.aof"

no-appendfsync-on-rewrite no

auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb

aof-load-truncated yes

aof-use-rdb-preamble yes

lua-time-limit 5000

slowlog-max-len 128

notify-keyspace-events ""

hash-max-ziplist-entries 512
hash-max-ziplist-value 64

list-max-ziplist-size -2

list-compress-depth 0

set-max-intset-entries 512

zset-max-ziplist-entries 128
zset-max-ziplist-value 64

hll-sparse-max-bytes 3000

stream-node-max-bytes 4096
stream-node-max-entries 100

activerehashing yes

hz 10

dynamic-hz yes

aof-rewrite-incremental-fsync yes

rdb-save-incremental-fsync yes
docker run --restart=always --log-opt max-size=100m --log-opt max-file=2 -p 16379:16379 --name myredis -v /home/fengzi/redis/conf/redis.conf:/etc/redis/redis.conf -v /home/fengzi/redis/data:/data -d redis redis-server /etc/redis/redis.conf  --appendonly yes  --requirepass SKr8xYtcEPh3UNMr

标签:no,--,max,redis,nacos,linux,yes
From: https://www.cnblogs.com/fengziHHH/p/16935350.html

相关文章

  • linux中使用docker创建redis容器镜像
    redis也是一种数据库,创建过程基本与mysql容器差不多,不过语法上稍有不同cd/rootmkdirredisdockersearchredisdockerpullredisdockerimagesdockerrun-p638......
  • linux下使用 ibus 中州韵输入法
    https://github.com/rime/home/wiki/RimeWithIBus1.安装sudoapt-getinstallibus-rime#五筆86、袖珍簡化字拼音、五筆畫sudoapt-getinstalllibrime-data-wubili......
  • Linux系统时间的设定以及自带的timesync时间同步
     1.三个阶段的系统时间设定 1.1内核启动阶段   这里是在menuconfig文件配置RTC设定系统时间选项。   CONFIG_RTC_HCTOSYS_DEVICE="rtc1",或者直接在decon......
  • Linux shell脚本需要用到的字符命令整理
    1、&、&&、||、2>&1、&>、>&212、<>>><<<23、subshell与代码块34、变量的设置规则:35、变量的应用方式:46、数组变量57、变量内容的删除:"#""%"58、变量内容......
  • 定时清除linux内存buff/cache缓存
    1.创建脚本文件       vimclean.sh2.在文件中输入以下脚本#!/bin/bash#每两小时清除一次内存buff/cache缓存echo"开始清除缓存"sync;sync;sync#写......
  • linux 下安装以及配置postgresql
    1、准备好资源 下载 PostgreSQL官网下载地址  ​​https://www.postgresql.org/ftp/source/v12.2/​​​  我这里下载的是 ​​postgresql-12.2.tar.gz​​ 压缩包......
  • mac使用ssh连接linux(ubuntu)GUI图形界面
    mac使用ssh连接linux(ubuntu)GUI图形界面1.linux服务端1.首先需要在linux服务端打开X11转发以ubuntu为例编辑/etc/ssh/sshd_config配置文件命令vim/etc/ssh/sshd_c......
  • Linux mke2fs命令
    1、功能Linuxmke2fs命令用于建立ext2文件系统。2、语法mke2fs[-cFMqrSvV][-b<区块大小>][-f<不连续区段大小>][-i<字节>][-N<inode数>][-l<文件>][-L<标签>][-......
  • 002 linux系统升级系统版本6升7
    在菜鸟教程上显示:Docker支持以下的64位CentOS版本:CentOS7CentOS8更高版本...查看服务器的版本是6  按照网上的centos6的安装步骤怎么都不能正确启动......
  • Linux(CentOS) Docker 部署Logstash (sqlserver 同步到Elasticsearch)
    网上搜了一下基本都是mysql同步到elasticsearch的案例,虽然没有Sqlserver得案例,但是想一下步骤也大致相同。1.拉取镜像使用以下命令拉去与elasticsearch版本一致logstas......