首页 > TAG信息列表 > 8081
01项目环境搭建
Spring initializer 使用initialier简化配置包的过程 启动项目 在application.properties修改端口(8080已被占用) server.port=8081 server.servlet.context-path=/community http://localhost:8081/community/访问项目docker利用nexus搭建maven私服
下载镜像 docker pull sonatype/nexus3 创建映射文件 # 创建文件夹 mkdir /home/nexus3/nexus-data/ # 授权 chmod 777 /home/nexus3/nexus-data/ 运行 docker run -d -p 8081:8081 --name nexus -v /home/nexus3/nexus-data:/nexus-data --restart=always sonatype/nexus3 查docker 安装jenkins从而实现自动编译、打包、构建镜像、容器部署
Docker 安装 Jenkins docker pull jenkins/jenkins:lts //最新版 创建一个 Jenkins 目录 mkdir -p /data/jenkins_home; chown -R 1000:1000 /data/jenkins_home 安装启动 Jenkins 容器 docker run -d --name jenkins -p 8081:8080 -v /data/jenkins_home:/var/jWindow下同一台服务器部署多个tomcat服务
安装tomcat步骤 1. 下载apache-tomcat-8.0.30 ,下载下来的文件为apache-tomcat-8.0.30-windows-x64.zip 2. 解压该压缩包到D:/目录下。 3. 修改解压文件夹名字为:tomcat-8080 4. 在D:/目录下创建该文件徒手撸设计模式-迭代器模式
概念 迭代器模式(Iterator Pattern)是 Java 和 .Net 编程环境中非常常用的设计模式。这种模式用于顺序访问集合对象的元素,不需要知道集合对象的底层表示。 迭代器模式属于行为型模式。 参考链接: https://www.runoob.com/design-pattern/iterator-pattern.html 代码案例 设计迭代器 1. 执行内容 kubectl get ns rook-ceph Terminating 18h # 开启另外一个窗口窗口 kubectl proxy --port=8081 kubectl get namespace rook-ceph -o json |jq '.spec = {"finalizers":[]}' >temp01.json curl -k -H "Content-Type: application/json"Windows下端口被占用的解决办法
背景:不需要重启,这种情况,一般是进程没有正常结束导致的,本次实验以 idea启动8081端口,在项目启动的过程中,因为安装了插件,提示restart ide,于是直接重启idea,再次启动项目就报8081端口被占用 解决办法: netstat -aon|findstr "8081" taskkill /f /pid 74323.springboot的配置
spring boot使用一个全局的配置文件,文件名称是固定的 1.application.properties 2.application.yml或application.yaml 配置文件的作用:修改springboot 自动配置的默认值,spring boot在底层都帮我们配置好 YAML(YAML Ain't MarkUp Language) YAML A MarkUp Language:是一个maven 私服安装
私服的作用:资源共享,提高同一个局域网下的成员的开发效率,将模块放在私服上,随取随用 Nexus私服下载地址 bin目录下打开命令行,执行 nexus /run nexus 启动服务 ,Started Sonatype Nexus OSS 3.38.1-01 标志着启动成功 url 访问地址 http://localhost:8081/ , 在 etc目录下 nexus-defaulinux 同时启动多个tomcat
linux同时启动多个tomcat 今天下班学习nginx负载均衡时,需要多个tomcat端口服务,在一台机启动多个tomcat服务,于是记录下操作过程。 复制tomcat 原tomcat端口默认8080,复制出的tomcat端口8081。 编辑环境变量 贴出来 #tomcat_8080 export CATALINA_HOME=/root/service/tomcat_8080 edocker安装nexus及使用
拉取镜像 docker search nexus docker pull sonatype/nexus3 创建宿主机容器卷 mkdir -p /docker/nexus/ chmod 755 /docker/nexus/ 启动容器 docker run -d --restart always --name nexus3 -p 8081:8081 -v /docker/nexus:/var/nexus-data sonatype/nexus3 由于我使用的后端问题总结(一)之Identify and stop the process that's listening on port 8080 or configure this applica
Identify and stop the process that's listening on port 8080 or configure this application to listen 因为我们SpringBoot的默认端口是server.port=8080,所以可能会导致端口占有的情况,下面这个问题可能是刚入门的时候经常会遇到的。Identify and stop the process that's listwindows查杀端口号
Microsoft Windows [版本 10.0.18363.418] (c) 2019 Microsoft Corporation。保留所有权利。 C:\Users\Administrator>netstat -ano|findstr 8081 TCP 0.0.0.0:8081 0.0.0.0:0 LISTENING 17928 TCP [::]:8081 [::]:0电商4.0项目【三】: 用户模块(8081)
文章目录 1. 用户模块(8081)1.1 搭建环境1.1.1 后端web服务:changgou4-service-web1.1.2 后端创建JavaBean:User1.1.3 前端页面:创建公共组件 1.2 用户注册:用户名占用1.2.1 接口1.2.2 后端1.2.3 前端 1.3 用户注册:手机号检查1.3.1 接口1.3.2 后端1.3.3 前端 1.4 用户注册:前置技解决一直占用8081端口,并且关不掉的问题
启动程序一直说我的8081端口被占用,但是我其他的程序都没跑,就很纳闷到底是哪个程序占用了8081端口 打开cmd输入命令: netstat -ano 查看 打开任务管理器找到使用42516进程的程序,直接结束任务,但是再次启动程序时,还是报8081端口被占用,再次执行上面的命令,发现8081端口还是被占用nginx的配置实例三(负载均衡)
目标构思图: 目标实现:拟访问一个网站http://192.168.5.199:8080/edu/8080.html然后将他们平均分配到服务器的8080、8081的端口中去,以达到负载均衡的效果 准备工作:(一)准备两台tomcat服务器,一个是8080端口一个是8081端口 (二)在两台tomcat的webapps的目vue
vscode debuger 浏览器 { // 使用 IntelliSense 了解相关属性。 // 悬停以查看现有属性的描述。 // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": &启动flink集群后,无法进入localhost:8081页面
问题详细: linux系统,Standalone 模式下,配置flink, 启动集群后,查看jps如下: 命令行启动信息完整无错误,但是登录http://localhost:8081,无法访问web页面 ,无法对 flink 集群和任务进行监控管理,访问报错如下图 尝试过网上的关闭防火墙方法,但是启动之前早已设置为关闭,没有解决,最后意Nginx负载均衡配置实例
五、Nginx负载均衡配置实例 实现效果:访问 www.123.com/edu/a.html的时候,将请求平均分配到8080和8081端口。 准备工作: 1)准备两台Tomcat服务器(端口号为8080和8081) 2)在两台Tomcat里面的webapps目录下,创建目录edu,在目录edu下存放一个a.html文件。 在第四章 Nginx反向代理配置实例《《《在同一台服务器上配置多个Tomcat
转载地址:https://www.cnblogs.com/linjiqin/p/5488461.html 在同一台服务器上配置多个Tomcat 1 下面我们把配置的详细过程写在下面,以供参考:(此例以配置三个Tomcat为例) 2 1. 下载apache-tomcat-7.0.63,下载下来的文件为apache-tomcat-7.0.63.zip. 3 2. 解压该压缩包到D:/div/目录Mac 关闭某个端口
查找8081端口 sudo lsof -i :8081 然后根据PID杀进程: sudo kill -9 86930(即pid)批量检测弱口令
fofa语句 title="任务调度中心" xxl-job import requests def save_file(msg): with open('res.txt', mode='a', encoding="utf-8") as f: f.write(f"{msg}\n") def check_pass(url): data_dict = {} funexus
1. docker nexus https://www.jianshu.com/p/edf57ba6a159 (1) docker pull sonatype/nexus3 (2) mkdir -p /data/nexus/data chmod 777 -R /data/nexus/data (3) docker run -d --name nexus3 -p 8081:8081 --restart always -v /data/nexus/data:/nexus-data sonatype/nexu服务如何实现优雅重启
前言 平滑重启主要考虑两点: 如何做到不中断接收新请求 老的请求不能被中断 实现思路 主要思路就是要解决新老进程切换过程中listener文件描述符和现有连接描述符的迁移,之前有一篇文章讲了如何通过unixSocket来传递文件描述符,这里也会用到这个技术, 具体的迁移流程如下:idea启动sentinel
idea启动sentinel 第一步:1.打开idea配置,如下图 第二步:2.点击+号 第三步:3.找到 shell script 第四步:4.配置sentinel 第五步: 浏览器访问:localhost:8081,进入sentinel