摘要:
1、安装Redis 6.2(两个节点,一主一副本) dnf -y install redis 2、修改主节点配置 # 修改部分的配置文件 # vim /etc/redis/redis.conf ... bind 0.0.0.0 timeout 600 daemonize yes min-replic 阅读全文
摘要:
1、安装Redis 6.2 dnf -y install redis 2、修改配置 # 修改部分的配置文件 # vim /etc/redis/redis.conf ... bind 0.0.0.0 timeout 600 daemonize yes requirepass password maxm 阅读全文
摘要:
1、安装MySQL dnf -y install mysql-server 2、修改配置 # vim /etc/my.cnf [client] port = 3306 socket = /var/lib/mysql/mysql.sock default-character-set = utf8mb4 阅读全文
摘要:
使用如下Dockerfile构建镜像 # vim Dockerfile FROM moxm/java:1.8-full as builder WORKDIR /build ARG JAR_FILE=target/pig-register.jar COPY ${JAR_FILE} app.jar RU 阅读全文