将基于 tar 的门户转换为基于 RPM 的门户

适用于私有云的 Edge v4.18.05

Apigee 开发者服务门户(以下简称“门户”)的 4.18.05 版不支持更新基于 tar 的旧版门户。您只能直接将基于 RPM 的门户版本更新到 4.18.05。

不过,您可以将基于 tar 的门户版本转换为基于 4.18.05 RPM 的门户实例。在此过程中,您需要将现有门户的 MySQL/MariaDB 迁移到 Postgres 数据库。转换后,您的门户仍会采用基于 RPM 的模式。

您可以将许多基于 tar 的旧版门户迁移到基于 RPM 的门户,包括 4.16.09 和 4.17.01 版本,而不仅仅是 4.17.05 版本。唯一的要求是门户运行的是 Drupal 7 或更高版本。如需查看您的 Drupal 版本,请在 Drupal 菜单中依次选择报告 > 状态报告。Drupal 版本会显示在输出的第一行中。

从基于 tar 的门户迁移到基于 RPM 的门户的概要步骤如下:

  • 在新节点上安装基于 RPM 的 4.18.05 版门户。
  • 在基于 RPM 的门户上创建新的 Postgres 数据库。
  • 从基于 tar 的门户迁移门户数据库。
  • 将所有配件文件从基于 tar 的门户复制到基于 RPM 的门户。
  • 更新 DNS 条目以指向基于 RPM 的新门户

    请注意,基于 RPM 的门户版本默认使用端口 8079,而基于 tar 的版本使用端口 80。请务必在 DNS 条目中使用正确的端口号。如需了解如何使用其他端口,请参阅设置门户使用的 HTTP 端口

转换后的新默认安装目录

更新现在使用 Nginx/Postgres 的安装后,根目录已从以下目录更改为:

/opt/apigee/apigee-drupal

to:

/opt/apigee/apigee-drupal/wwwroot

门户转换流程

如需将门户转换为基于 RPM 的安装,请执行以下操作:

  1. 在与基于 tar 的门户不同的节点上安装基于 RPM 的 4.18.05 版门户。
  2. 基于 RPM 的门户上,创建一个新的 Postgres 数据库。稍后,您可以将数据库从基于 tar 的门户迁移到这个新数据库:
    1. 登录 psql:
      psql -h localhost -p 5432 -U apigee

      输入门户配置文件中 PG_PWD 属性所定义的 Postgres 密码。

    2. 创建一个新的 Postgred 数据库:
      CREATE DATABASE newportaldb;
    3. 退出 psql:
      \q
  3. 在基于 tar 的门户上,移除不再使用的旧模块:

    cd /var/www/html
    drush sql-query --db-prefix "DELETE from {system} where name = 'apigee_account' AND type = 'module';"
    drush sql-query --db-prefix "DELETE from {system} where name = 'apigee_checklist' AND type = 'module';"
    drush sql-query --db-prefix "DELETE from {system} where name = 'apigee_sso_ui' AND type = 'module';"

  4. 在基于 tar 的门户上,安装并配置 Migrator Drupal 模块:
    1. cd /tmp 
    2. wget https://ftp.drupal.org/files/projects/dbtng_migrator-7.x-1.4.tar.gz 
    3. gunzip /tmp/dbtng_migrator-7.x-1.4.tar.gz 
    4. tar -xvf /tmp/dbtng_migrator-7.x-1.4.tar --directory /var/www/html/sites/all/modules 
    5. 以管理员身份登录门户。
    6. 在 Drupal 菜单中选择模块
    7. 启用 DBTNG Migrator 模块。
    8. 保存配置。
  5. 在基于 tar 的门户上,修改 /var/www/html/sites/default/settings.php 以添加指向基于 RPM 的门户上新创建的数据库的第二个数据库配置。当前的数据库配置名为“default”。将新配置命名为“custom”,如以下示例所示:
    $databases = array (
      'default' =>
      array (
        'default' =>
        array (
          'database' => 'devportal',
          'username' => 'devportal',
          'password' => 'devportal',
          'host' => 'localhost',
          'port' => '',
          'driver' => 'mysql',
          'prefix' => '',
        ),
      ),
      'custom' =>
      array (
        'default' =>
        array (
          'database' => 'newportaldb',
          'username' => 'apigee',
          'password' => 'postgres',
          'host' => '192.168.168.100',
          'port' => '5432',
          'driver' => 'pgsql',
          'prefix' => '',
        )
      )
    );

    其中 hostport 指定 Postgres 服务器的 IP 地址和端口。Postgres 使用端口 5432 进行连接。

  6. 在基于 tar 的门户上,安装 Postgres 驱动程序:
    1. 使用 Yum 安装驱动程序:
      yum install php-pdo_pgsql
    2. 修改 /etc/php.ini,在文件中的任意位置添加以下行:
      extension=pgsql.so
    3. 重启 Apache:
      service httpd restart
  7. 在基于 tar 的门户上,将门户数据库迁移到基于 RPM 的门户:
    1. 以管理员身份登录门户。
    2. 在 Drupal 菜单中,依次选择 Structure->Migrator
    3. 在基于 tar 的门户上选择源数据库 default,并根据上面显示的 settings.php 文件选择目标数据库 custom
    4. 点击迁移。基于 tar 的数据库会迁移到基于 RPM 的数据库。
  8. sites 目录从基于 tar 的服务器复制到基于 RPM 的服务器。以下步骤中显示的路径基于默认路径。根据需要修改这些参数以进行安装。
    1. 在基于 tar 的门户上,打包 /var/www/html/sites 目录:
      cd /var/www/html/sites
      tar -cvzf /tmp/sites.tar.gz .
    2. /tmp/sites.tar.gz 复制到基于 RPM 的服务器上的 /opt/apigee/apigee-drupal/wwwroot/sites
    3. 解压缩网站目录,但不要覆盖重要文件。
      1. 备份 settings.php 文件:
        sudo cp /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.php
          /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.bak.php
      2. 备份现有的 files 目录:
        sudo mv /opt/apigee/apigee-drupal/wwwroot/sites/default/files
          /opt/apigee/apigee-drupal/wwwroot/sites/default/files_old
      3. 备份现有的 sites 目录:
        tar -cvzf /tmp/sites_old.tar.gz /opt/apigee/apigee-drupal/wwwroot/sites
      4. 从基于 tar 的服务器解压缩并解压 sites 目录:
        gunzip /opt/apigee/apigee-drupal/wwwroot/sites/sites.tar.gz
        tar -xvf /opt/apigee/apigee-drupal/wwwroot/sites/sites.tar
      5. 确保复制的文件具有适当的所有权:
        chown -R apigee:apigee /opt/apigee/apigee-drupal/wwwroot/sites/
      6. 恢复 settings.php 文件:
        sudo cp /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.bak.php
          /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.php
      7. 将私密文件移至新位置:
        cp -r /opt/apigee/apigee-drupal/wwwroot/sites/default/files/private/* /opt/apigee/data/apigee-drupal-devportal/private
        rm -rf /opt/apigee/apigee-drupal/wwwroot/sites/default/files/private
        chown -R apigee:apigee /opt/apigee/data/apigee-sap-drupal-devportal/private
  9. 在基于 tar 的门户上,仅当您将基于 tar 的门户上网页根目录的路径从默认路径 /var/www/html 更改后,才需要执行以下操作:运行 drush status 并查看 files 路径和 private files 路径:
    cd /var/www/html
    drush status

    如果文件/私有文件不在 sites 目录下,请将其复制到基于 RPM 的服务器,如上所示。

  10. 在基于 RPM 的门户上,更新 /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.php 以设置默认数据库的属性:
    vi /opt/apigee/apigee-drupal/wwwroot/sites/default/settings.php

    在 settings.php 中设置默认数据库说明:

    $databases = array (
      'default' =>
      array (
        'default' =>
        array (
          'database' => 'newportaldb',
          'username' => 'apigee',
          'password' => 'postgres',
          'host' => 'localhost', 'port' => '5432',
          'driver' => 'pgsql',
          'prefix' => '',
        )
      )
    );

    其中 database 指定您创建的新数据库,usernamepassword 是基于 tar 的门户上为自定义数据库定义的,prefix 为空。

  11. 在基于 RPM 的门户上,基于 RPM 的门户版本包含的 Drupal 模块比基于 tar 的版本少。迁移到基于 RPM 的门户后,您必须检查是否有任何缺失的模块,并根据需要进行安装。
    1. 安装用于检测缺失模块的 Drupal missing_module
      cd /opt/apigee/apigee-drupal/wwwroot
      drush dl missing_module
      drush en missing_module
    2. 以管理员身份登录基于 RPM 的门户。
    3. 在 Drupal 菜单中,依次选择报告 > 状态报告,然后检查是否缺少任何模块。
    4. 使用该报告安装所有缺失的模块,或使用以下命令:
      cd /opt/apigee/apigee-drupal/wwwroot
      drush dl <moduleA> <moduleB> ...
      drush en <moduleA> <moduleB> ...
    5. 启用所有模块后,请确保文件归 apigee 用户所有:
      chown -LR apigee:apigee /opt/apigee/apigee-drupal/wwwroot

      如需详细了解文件权限,请参阅 https://www.drupal.org/node/244924

  12. 基于 RPM 的门户中,在浏览器中运行 update.php 以移除有关缺失模块的所有错误:
    1. 以管理员身份登录基于 RPM 的门户。
    2. 在浏览器中,前往以下网址:
      http://portal_IP_or_DNS:8079/update.php

      其中,portal_IP_or_DNS 是基于 RPM 的门户的 IP 地址或域名。

    3. 按照屏幕上的提示操作。
  13. 更新 DNS 条目,使其指向新的基于 RPM 的门户。

    请注意,基于 RPM 的门户版本默认使用端口 8079,而基于 tar 的版本使用端口 80。请务必在 DNS 条目中使用正确的端口号。如需了解如何使用其他端口,请参阅设置门户使用的 HTTP 端口

转换已完成。