搜索结果
查询Tags标签: Home,共有 1480条记录-
linux配置环境变量
linux配置环境变量有多种方式,小编这里用的是一种便保险的配置方式。 在/etc/profile.d目录下,添加*.sh文件。系统会扫描这个文件夹下的*.sh文件,从而加载环境变量。 以Debian11配置jdk1.8为例: 在/etc/profile.d目录下生成java.sh文件,然后写入 PATH=$JAVA_HOME/bin…
2021/8/23 7:28:36 人评论 次浏览 -
Rancher安装
1.防火墙设置 firewall-cmd --add-port 80/tcp --permanent firewall-cmd --add-port 443/tcp --permanent firewall-cmd --reload安装Dockeryum install docker -y service docker start安装Ranckerdocker pull rancher/rancher:stable hostnamectl set-hostname rancher…
2021/8/23 6:28:45 人评论 次浏览 -
Rancher安装
1.防火墙设置 firewall-cmd --add-port 80/tcp --permanent firewall-cmd --add-port 443/tcp --permanent firewall-cmd --reload安装Dockeryum install docker -y service docker start安装Ranckerdocker pull rancher/rancher:stable hostnamectl set-hostname rancher…
2021/8/23 6:28:45 人评论 次浏览 -
tomcat解压版不能启动
1、解决双击startup.bat一闪而过问题:安装版tomcat8.0,找到apache-tomcat-8.5.70\bin下的tomcat.exe,启动就可以了,但免安装版的双击startup.bat会一闪而过,原因是没有编辑startup.bat文件:免安装版Tomcat8.0启动方法如下:1.解压下载的tomcat8.0 zip文件 2.编辑star…
2021/8/22 23:59:46 人评论 次浏览 -
tomcat解压版不能启动
1、解决双击startup.bat一闪而过问题:安装版tomcat8.0,找到apache-tomcat-8.5.70\bin下的tomcat.exe,启动就可以了,但免安装版的双击startup.bat会一闪而过,原因是没有编辑startup.bat文件:免安装版Tomcat8.0启动方法如下:1.解压下载的tomcat8.0 zip文件 2.编辑star…
2021/8/22 23:59:46 人评论 次浏览 -
windows的confluence配置修复
(6条消息) windows下tomcat只更改配置文件设置JRE_HOME,不更改环境变量_zhangchao19890805的专栏-CSDN博客 confluence安装 java_【工作】Windows下安装Confluence|学步园 - 期权论坛 Configuring a MySQL Datasource in Apache Tomcat - Confluence 文档和手册 - CWIKI.U…
2021/8/22 7:06:35 人评论 次浏览 -
windows的confluence配置修复
(6条消息) windows下tomcat只更改配置文件设置JRE_HOME,不更改环境变量_zhangchao19890805的专栏-CSDN博客 confluence安装 java_【工作】Windows下安装Confluence|学步园 - 期权论坛 Configuring a MySQL Datasource in Apache Tomcat - Confluence 文档和手册 - CWIKI.U…
2021/8/22 7:06:35 人评论 次浏览 -
nginx
Compile: yum install zlib-devel pcre-devel user bb; worker_processes auto; error_log logs/error.log notice; pid /var/run/nginx.pid;events {accept_mutex on;multi_accept on;worker_connections 2048;use epoll; }http {include mime.types;default_type appli…
2021/8/22 7:06:30 人评论 次浏览 -
nginx
Compile: yum install zlib-devel pcre-devel user bb; worker_processes auto; error_log logs/error.log notice; pid /var/run/nginx.pid;events {accept_mutex on;multi_accept on;worker_connections 2048;use epoll; }http {include mime.types;default_type appli…
2021/8/22 7:06:30 人评论 次浏览 -
Docker入门第九章
Commit镜像docker commit 提交容器成为一个新的副本# 命令和git原理类似 docker commit -m="提交的描述信息" -a="作者" 容器id 目标镜像名:[TAG] 实战测试 # 1.启动一个默认的Tomcat# 2.发现这个默认的tomcta 是没有webapps应用,镜像的原因,官方的…
2021/8/21 23:08:09 人评论 次浏览 -
Docker入门第九章
Commit镜像docker commit 提交容器成为一个新的副本# 命令和git原理类似 docker commit -m="提交的描述信息" -a="作者" 容器id 目标镜像名:[TAG] 实战测试 # 1.启动一个默认的Tomcat# 2.发现这个默认的tomcta 是没有webapps应用,镜像的原因,官方的…
2021/8/21 23:08:09 人评论 次浏览 -
oracle RAC 监听状态为"Not All Endpoints Registered"
Listener in INTERMEDIATE status with "Not All Endpoints Registered" [ID 1454439.1]#crsctl status res -t ora.LISTENER.lsnr ONLINE INTERMEDIATE defdb1 Not All Endpoints Registered ONLINE ONLINE …
2021/8/21 19:36:10 人评论 次浏览 -
oracle RAC 监听状态为"Not All Endpoints Registered"
Listener in INTERMEDIATE status with "Not All Endpoints Registered" [ID 1454439.1]#crsctl status res -t ora.LISTENER.lsnr ONLINE INTERMEDIATE defdb1 Not All Endpoints Registered ONLINE ONLINE …
2021/8/21 19:36:10 人评论 次浏览 -
使用shell脚本清理ElasticSearch历史数据
shell脚本内容如下: #!/bin/bash # # 脚本名:clean.sh # 功能:用于清理日志数据 # 作者:VardenCONFIG_FILE=/home/scripts/config.yml ACTION_FILE=/home/scripts/action_file.yml/usr/bin/curator --config $CONFIG_FILE $ACTION_FILEecho "---" echo &quo…
2021/8/21 7:07:47 人评论 次浏览 -
使用shell脚本清理ElasticSearch历史数据
shell脚本内容如下: #!/bin/bash # # 脚本名:clean.sh # 功能:用于清理日志数据 # 作者:VardenCONFIG_FILE=/home/scripts/config.yml ACTION_FILE=/home/scripts/action_file.yml/usr/bin/curator --config $CONFIG_FILE $ACTION_FILEecho "---" echo &quo…
2021/8/21 7:07:47 人评论 次浏览