gpt4 book ai didi

wordpress - 在 Azure VMSS 上使用 Cloud Init 部署 WordPress 时收到 502 错误网关

转载 作者:行者123 更新时间:2023-12-03 03:25:38 24 4
gpt4 key购买 nike

您好,我正在尝试使用 Terraform 和 Cloud init 通过应用程序网关将 WordPress 实例部署到 Azure 上的 VM 规模集。

目前我得出的结论是,该问题是由于“wordpress.conf”和“wp-config.php”文件的安装方式造成的,而不是由于与基础设施相关的配置造成的,因为命令仅限于仅启动 nginx 时,公共(public) IP 会在预期端口 80 上返回“欢迎使用 nginx”消息。

这是当前正在使用的云初始化文件

    #cloud-config
package_upgrade: true
packages:
- nginx
- php-curl
- php-gd
- php-intl
- php-mbstring
- php-soap
- php-xml
- php-xmlrpc
- php-zip
- php-fpm
- php-mysql
- nfs-common

write_files:
- path: /tmp/wp-config.php
content: |
<?php
define('DB_NAME', 'wordpressdb');
define('DB_USER', 'wordpress');
define('DB_PASSWORD', 'w0rdpr3ss@p4ss');
define('DB_HOST', '${database_fqdn}');
$table_prefix = 'wp_';
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
}
require_once ABSPATH . 'wp-settings.php';
?>


- path: /tmp/wordpress.conf
content: |
server {
listen 80;
server_name _;
root /data/nfs/wordpress;

index index.html index.htm index.php;

location / {
try_files \$uri \$uri/ /index.php\$is_args\$args;
}

location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
}

location = /favicon.ico {
log_not_found off;
access_log off;

}

location = /robots.txt {
log_not_found off;
access_log off;
allow all;
}

location ~* \.(css|gif|ico|jpeg|jpg|js|png)$ {
expires max;
log_not_found off;
}

location ~ /\.ht {
deny all;
}

}

runcmd:
- mkdir -p /data/nfs/wordpress
- mount -t nfs ${wordpress_storage_account_name}.file.core.windows.net:/${wordpress_storage_account_name}/${client_tag}wpstorageshare${environment_prefix} /data/nfs -o vers=4,minorversion=1,sec=sys
- wget http://wordpress.org/latest.tar.gz -P /data/nfs/wordpress
- tar xzvf /data/nfs/wordpress/latest.tar.gz -C /data/nfs/wordpress --strip-components=1
- cp /tmp/wp-config.php /data/nfs/wordpress/wp-config.php
- cp /tmp/wordpress.conf /etc/nginx/sites-available/wordpress.conf
- ln -s /etc/nginx/sites-available/wordpress.conf .
- chown -R www-data:www-data /data/nfs/wordpress
- rm /etc/nginx/sites-enabled/default
- rm /etc/nginx/sites-available/default
- mkdir /etc/systemd/system/nginx.service.d
- printf "[Service]\nExecStartPost=/bin/sleep 0.1\n" > /etc/systemd/system/nginx.service.d/override.conf
- systemctl daemon-reload
- systemctl restart nginx

注意:上面的 cloud-init 文件配置为解压缩并将 WordPress nginx 配置文件放置在安装到配置为 NFS 的 Azure 存储帐户的目录中。

我尝试修复的一些问题如下:

  • 更新“location/” block 语法不正确(无变化)
  • 使用 sudo nginx -t 检查配置语法(返回 OK)
  • 尝试更改 nginx 服务器正在监听的端口(没有更改)
  • 在配置虚拟机时探索了串行日志中可能出现的错误(没有错误)
  • 运行“sudo systemctl status nginx”来检查服务器错误(状态为“RUNNING”)

我的期望是,当第一次访问应用程序网关上的公共(public) IP 时,wordpress 设置会显示出来。

最佳答案

我已经解决了我自己的问题。答案是在启用站点的目录下的根目录中创建符号链接(symbolic link)。对于这个例子,特别是看起来像:\

ln -s /etc/nginx/sites-available/wordpress.conf /data/nfs/wordpress/sites-enabled/wordpress.conf

注意:这些问题特定于使用 Azure 应用程序网关在 Azure 虚拟机规模集上部署 wordpress。

此外,如果您已执行此操作但仍然收到 502 错误。确保 wordpress 能够建立数据库连接。为此,您可以通过您喜欢的任何方法登录到服务器,然后运行curl localhost:port来查看nginx返回的内容。

建议您在服务器上 curl 来自服务器的 html 响应,因为如果没有任何 VM 实例运行状况良好,应用程序网关将返回 502。

关于wordpress - 在 Azure VMSS 上使用 Cloud Init 部署 WordPress 时收到 502 错误网关,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/75717789/

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