为啥我部署了项目,也启动了weblogic服务,为啥打开网页依然是该也无法显示?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为啥我部署了项目,也启动了weblogic服务,为啥打开网页依然是该也无法显示?相关的知识,希望对你有一定的参考价值。
为什么我启动服务的时候 出现了 3个IP同样的7001端口被占用,1个数据库ip,1个设置的IP,还有个是本地的ip.然后一启动服务就是端口被占用。。。
我们在启动应用的时候发现系统需要的端口被别的程序占用,如何知道谁占有了我们需要的端口,很多人都比较头疼,下面就介绍一种非常简单的方法,希望对大家有用假如我们需要确定谁占用了我们的9050端口
1、Windows平台
在windows命令行窗口下执行:
1.查看所有的端口占用情况
C:\>netstat -ano
协议 本地地址 外部地址 状态 PID
TCP 127.0.0.1:1434 0.0.0.0:0 LISTENING 3236
TCP 127.0.0.1:5679 0.0.0.0:0 LISTENING 4168
TCP 127.0.0.1:7438 0.0.0.0:0 LISTENING 4168
TCP 127.0.0.1:8015 0.0.0.0:0 LISTENING 1456
TCP 192.168.3.230:139 0.0.0.0:0 LISTENING 4
TCP 192.168.3.230:1957 220.181.31.225:443 ESTABLISHED 3068
TCP 192.168.3.230:2020 183.62.96.189:1522 ESTABLISHED 1456
TCP 192.168.3.230:2927 117.79.91.18:80 ESTABLISHED 4732
TCP 192.168.3.230:2929 117.79.91.18:80 ESTABLISHED 4732
TCP 192.168.3.230:2930 117.79.91.18:80 ESTABLISHED 4732
TCP 192.168.3.230:2931 117.79.91.18:80 ESTABLISHED 4732
2.查看指定端口的占用情况
C:\>netstat -aon|findstr "9050"
协议 本地地址 外部地址 状态 PID
TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2016
P: 看到了吗,端口被进程号为2016的进程占用,继续执行下面命令: (也可以去任务管理器中查看pid对应的进程)
3.查看PID对应的进程
C:\>tasklist|findstr "2016"
映像名称 PID 会话名 会话# 内存使用
========================= ======== ================
tor.exe 2016 Console 0 16,064 K
P:很清楚吧,tor占用了你的端口。
4.结束该进程
C:\>taskkill /f /t /im tor.exe 参考技术A 你是不是还开启了其他的应用程序, 参考技术B 首先查看你的项目是否发布在对应服务器下,其次启动服务有无报错,之后看端口对不对追问
为什么我启动服务的时候 出现了 3个IP同样的7001端口被占用,1个数据库ip,1个设置的IP,还有个是本地的ip.然后一启动服务就是端口被占用。。。
参考技术C 是不是端口号弄错了我部署了我的项目,我收到此错误 Input file contains unsupported image format
【中文标题】我部署了我的项目,我收到此错误 Input file contains unsupported image format【英文标题】:I deployed my project, I am getting this error Input file contains unsupported image format 【发布时间】:2021-11-22 18:33:14 【问题描述】:我正在尝试在我的生产环境中构建(我使用 GitHub 操作进行部署),但错误是我的本地节点之间的节点不一样
在我的本地我有这个版本:
npm -v
-> 7.24.1
node -v
-> v14.13.1
但我不知道 GitHub 操作上的节点版本是什么 我无法在本地重现错误,因为版本不一样
我收到此错误:
success extract queries from components - 4.464s
success write out redirect data - 0.001s
success Build manifest and related icons - 0.003s
error "gatsby-plugin-manifest" threw an error while running the onPostBootstrap lifecycle:
Input file contains unsupported image format
Error:Input file contains unsupported image format
not finished onPostBootstrap - 0.025s
npm ERR! code ELIFECYCLE
这些是我的依赖项:
"dependencies":
"@material-ui/core": "4.11.0",
"@material-ui/icons": "4.9.1",
"@material-ui/lab": "4.0.0-alpha.56",
"@material-ui/styles": "4.11.4",
"axios": "^0.21.0",
"file-saver": "^2.0.5",
"firebase": "^7.15.4",
"gatsby": "^2.22.15",
"gatsby-cli": "^2.12.87",
"gatsby-image": "^2.4.5",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-material-ui": "3.0.0",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-react-redux": "1.1.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-robots-txt": "^1.6.8",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "3.3.0",
"gatsby-source-filesystem": "^2.3.8",
"gatsby-transformer-sharp": "2.5.3",
"material-ui-dropzone": "3.3.0",
"npm": "^7.5.6",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-redux": "^7.2.1",
"redux": "^4.0.5",
"redux-mock-store": "^1.5.4",
"stopword": "^1.0.3",
"tracking-number-validation": "^2.0.2",
"uuid": "^8.3.2"
,
这是部署到生产环境的 build.yml
name: Build
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- run: echo $ github.ref
- name: Checkout Repo
uses: actions/checkout@v2
【问题讨论】:
【参考方案1】:但我不知道 github 操作上的节点版本是什么我无法在本地重现错误,因为版本不一样
您可以使用setup-node
操作使版本与您的本地版本完全相同:
- uses: actions/setup-node@v2
with:
node-version: '14.13.1'
- run: npm install -g npm@7.24.1
- run: npm -v
- run: node -v
github中的输出:
Run npm -v
npm -v
shell: /usr/bin/bash -e 0
7.24.1
Run node -v
node -v
shell: /usr/bin/bash -e 0
v14.13.1
【讨论】:
但是如何找到 github 节点以将其安装在我的本地 同理,只是不要在github操作中强制安装任何新节点,添加run: node -v
,然后在github中您可以看到日志输出以查看它使用的节点版本。
应该把它放在构建文件中吗?我在我的问题中添加了该文件,请看,我应该在哪个部分运行:node -v,我不想破坏
steps:
之后,和你的其他步骤一样。你已经在你的 yaml 中创建了一些 run
,比如 run: npm install
,复制它。
我要这样写:步骤:-名称:版本节点运行:节点-v。没事吧?以上是关于为啥我部署了项目,也启动了weblogic服务,为啥打开网页依然是该也无法显示?的主要内容,如果未能解决你的问题,请参考以下文章
我部署了我的项目,我收到此错误 Input file contains unsupported image format
windows 7本地安装的weblogic,部署项目启动报错。