三五开发运维 这只是某个人的记事本

centos7.9 执行 hugo 报错

centos7.9 执行 hugo 报错

hugo: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.20' not found (required by hugo)
hugo: /lib64/libstdc++.so.6: version `CXXABI_1.3.8' not found (required by hugo)
hugo: /lib64/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by hugo)
阅读更多......

centos7离线安装docker,制作离线安装包

centos7离线安装docker,制作离线安装包

这篇文档来源于

https://www.centlinux.com/2019/02/install-docker-ce-on-offline-centos-7-machine.html

不同版本的系统docker的依赖包不一样。

所以需要在相同版本的系统中提取安装包,可以在虚拟机中安装相同版本系统

阅读更多......

linux firewall conf | centos 防火墙配置

防火墙相关命令

禁用
systemctl disable firewalld
启用
systemctl enable firewalld
开启
systemctl start firewalld
关闭
systemctl stop firewalld
重启
systemctl restart firewalld
重载
firewall-cmd --reload
阅读更多......

tomcat 重启session不丢失

tomcat 可以配置在重启时将session写入磁盘再加载

在apache-tomcat\conf\server.xml文件

组件内加上:

阅读更多......

pve lxc openwrt 安装

Alt text

载最新编译openwrt的rootfs文件

https://mirrors.aliyun.com/openwrt/releases/21.02.1/targets/x86/generic/

阅读更多......

nginx memcached tomcat8 session 共享

示例图

memcached 安装配置 菜鸟教程链接

Memcached 的 Windows 平台安装包 32位系统 1.4.4版本 64位系统 1.4.4版本

阅读更多......

pve lxc jellyfin 并开启硬件加速、挂载nas盘

示例图

当前使用的pve版本是7.1.-10 设备cpu j4125

阅读更多......

ActiveMQ 简单配置使用

Apache ActiveMq

ActiveMQ “Classic” 下载地址

本文以windows版本为例子 解压apache-activemq-5.15.15-bin.zip压缩包

获得目录结构

bin 命令目录
conf 配置文件
data 数据日志文件
docs 文档说明
examples 例子:配置文件、代码
lib jar包
webapps 管理台应用
webapps-demo 管理台应用的例子
阅读更多......

centos安装vsftp

示例图

安装指令:

yum install vsftp

配置文件夹:

/etc/vsftpd/

改文件夹内有4个文件

阅读更多......

宝塔命令技巧

Centos安装命令:

yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh

Ubuntu/Deepin安装命令:

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh

Debian安装命令:

wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh

Fedora安装命令:

wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh

阅读更多......