gpt4 book ai didi

javascript - Apache 反向代理到 Node - 连接被拒绝 : AH00957

转载 作者:行者123 更新时间:2023-12-04 22:34:40 26 4
gpt4 key购买 nike

我正在尝试让一个全新的基于云的服务器与默认版本的 20.04 服务器 ubuntu 一起使用 apache 和 node。 Node 服务器似乎正在运行,没有报告 4006 端口打开的问题。但是我相信我的 apache 配置不是。该请求将挂起很长时间。 Node 终端中不显示错误。所以错误一定出在我的 apache 配置中,因为我们得到了以下 apache 错误并且没有 JS 错误。
一段时间后请求错误

502 proxy error
Apache 错误日志
[Sun Oct 17 20:58:56.608793 2021] [proxy:error] [pid 1596878] (111)Connection refused: AH00957: HTTP: attempt to connect to [::1]:4006 (localhost) failed
[Sun Oct 17 20:58:56.608909 2021] [proxy_http:error] [pid 1596878] [client 207.46.13.93:27392] AH01114: HTTP: failed to make connection to backend: localhost
虚拟主机
<VirtualHost IP_ADDRESS:80>
ServerName api.aDomain.com
Redirect permanent / https://api.aDomain.com/
</VirtualHost>
<IfModule mod_ssl.c>
<VirtualHost IP_ADDRESS:443>
ServerName api.aDomain.com

ProxyRequests on
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_http_module /usr/lib/apache2/modules/mod_proxy_http.so

ProxyPass / http://localhost:4006/
ProxyPassReverse / http://localhost:4006/


#certificates SSL
SSLEngine on
SSLCACertificateFile /etc/ssl/api.aDomain.com/apimini.ca
SSLCertificateFile /etc/ssl/api.aDomain.com/apimini.crt
SSLCertificateKeyFile /etc/ssl/api.aDomain.com/apimini.key

ErrorLog ${APACHE_LOG_DIR}/error_api.aDomain.com.log
CustomLog ${APACHE_LOG_DIR}/access_api.aDomain.com.log combined

</VirtualHost>
</IfModule>
终端输出
[nodemon] 1.19.4
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `babel-node -r dotenv/config --inspect=9229 index.js`
Debugger listening on ws://127.0.0.1:9229/c1fcf271-aea8-47ff-910e-fe5a91fce6d2
For help, see: https://nodejs.org/en/docs/inspector
Browserslist: caniuse-lite is outdated. Please run next command `npm update`
🚀 Server ready at http://localhost:4006
Node 服务器
import cors from 'cors'

import scrape from './src/api/routes/scrape'

const express = require('express')
const { ApolloServer, gql } = require('apollo-server-express')
const { postgraphile } = require('postgraphile')
const ConnectionFilterPlugin = require('postgraphile-plugin-connection-filter')

const dbHost = process.env.DB_HOST
const dbPort = process.env.DB_PORT
const dbName = process.env.DB_NAME
const dbUser = process.env.DB_USER
const dbPwd = process.env.DB_PWD
const dbUrl = dbPwd
? `postgres://${dbUser}:${dbPwd}@${dbHost}:${dbPort}/${dbName}`
: `postgres://${dbHost}:${dbPort}/${dbName}`

var corsOptions = {
origin: '*',
optionsSuccessStatus: 200, // some legacy browsers (IE11, various SmartTVs) choke on 204
}

async function main() {
// Construct a schema, using GraphQL schema language
const typeDefs = gql`
type Query {
hello: String
}
`

// Provide resolver functions for your schema fields
const resolvers = {
Query: {
hello: () => 'Hello world!',
},
}

const server = new ApolloServer({ typeDefs, resolvers })

const app = express()
app.use(cors(corsOptions))
app.use(
postgraphile(process.env.DATABASE_URL || dbUrl, 'public', {
appendPlugins: [ConnectionFilterPlugin],
watchPg: true,
graphiql: true,
enhanceGraphiql: true,
})
)
server.applyMiddleware({ app })

//Scraping Tools
scrape(app)

const port = 4006
await app.listen({ port })
console.log(`🚀 Server ready at http://localhost:${port}`)
}

main().catch(e => {
console.error(e)
process.exit(1)
})
启用 Apache 模组
/etc/apache2/mods-enabled/proxy.conf
/etc/apache2/mods-enabled/proxy.load
/etc/apache2/mods-enabled/proxy_http.load
更新的错误日志
[Thu Oct 21 10:59:22.560608 2021] [proxy_http:error] [pid 10273] (70007)The timeout specified has expired: [client 93.115.195.232:8963] AH01102: error reading status line from remote server 127.0.0.1:4006, referer: https://miniatureawards.com/
[Thu Oct 21 10:59:22.560691 2021] [proxy:error] [pid 10273] [client 93.115.195.232:8963] AH00898: Error reading from remote server returned by /graphql, referer: https://miniatureawards.com/

最佳答案

我无法准确预测究竟会发生什么,它可能是 NodeJS 应用程序崩溃并且不再运行或存在错误配置的 Apache 文件。但我坚信这种情况将通过从高层做事来解决。
这一步将通过更新 unbuntu 包、安装所需的应用程序、配置 Apache 文件以及使用 NodeJS 和 Apache 设置反向代理。
只是不要触摸您的 NodeJS 文件和其他与代码相关的应用程序,它们将是安全的。您也可以备份以确保。该 ubuntu 服务器示例数据库应用程序上的其他运行应用程序,如 MySQL因为会很好并且仍在运行。

1.首先我们需要更新ubuntu包并安装Apache和NodeJS


$ sudo apt update
$ sudo apt install apache2 npm


2.运行此命令使我们能够使用Apache作为反向代理服务器

sudo a2enmod proxy proxy_http rewrite headers expires



3. 创建 Apache 虚拟主机文件。
此命令将让您使用 ubuntu 终端作为文本编辑器,按照终端的指南和提示进行编写。
笔记:
将“yourSite.com”更改为您网站的域。文件名并不重要。但我认为最好以您的站点域命名,这样您就可以识别它。

$ sudo nano /etc/apache2/sites-available/yourSite.com.conf


4. 使用 nano 编辑器为您的站点编写 Apache 配置文件。
注意:这部分很关键,请注意
使用您的站点域名更改您的 ServerName 和 ServerAlias。
ProxyPass 和 ProxyPassReverse this 有两个参数。
第一个是反斜杠“/”这是您的 NodeJS 应该位于的绝对路径,因为它的单个反斜杠意味着它的主目录。
第二个是网址“http://127.0.0.1:3000/”您的 NodeJS 应用程序。请注意它的 PORT “3000”,您可能需要将其替换为您在 NodeJS 应用程序中使用的 PORT。

<VirtualHost *:80>
ServerName example.com // replace this with site domain name without www at the beginning
ServerAlias www.example.com // replace this with site domain name beginning with www. + yourdomainname + .com

ProxyRequests Off
ProxyPreserveHost On
ProxyVia Full

<Proxy *>
Require all granted
</Proxy>

ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:30000/
</VirtualHost>


5.禁用默认的Apache站点并启用新站点。
$ sudo a2dissite 000-default
$ sudo a2ensite example.com.conf


6. 重新启动 Apache 服务器以应用更改
sudo systemctl restart apache2

我们已经准备好将 Apache 设置为反向代理,但我们还需要安装项目的 npm 包,然后运行 ​​NodeJS 应用程序。

7.剩下的步骤都是和NodeJS部署相关的。您可能已经知道这些步骤。

// install npm packages
npm install

// for a better experience using NodeJS in production install pm2 globally
npm install -g pm2

// Then run your NodeJS application using pm2 command

pm2 start // you should be at root of your NodeJS project folder when running this command

// run this another pm2 command to make sure your NodeJS app will re-run when it encounter downtime.

$ pm2 save
$ pm2 startup

您的 Apache 和 NodeJS 服务器现已启动并运行
尝试通过在浏览器地址栏中输入您的站点域名来访问您的站点
例如 http://yourSite.com

关于javascript - Apache 反向代理到 Node - 连接被拒绝 : AH00957,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69609078/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com