0

在我的客户端 Centos 7 机器上需要安装 sqitch,但在离线环境下不知道该怎么做!

4

1 回答 1

0

找到了一个对我有用的解决方案,我正在尝试生成一个 Sqitch 捆绑文件夹,我们将拥有一个 Sqitch 的工作版本,您可以在其他具有相同 Arch 的 centos 7 机器上使用它。

# yum install gcc

# yum install perl-DBD-Pg

# cpan

cpan[1]> install HTML::Entities

提取焦油

# cd /{extracted_dir}/

# perl Build.PL

# ./Build installdeps

# ./Build bundle --install_base sqitch_bundle --dual_life 1 --with postgres

现在您在 App-Sqitch-v1.0.0 文件夹中拥有 sqitch_bundle 文件夹,该文件夹是在上述步骤中提取的,您可以将这个 sqitch_bundle 文件夹 tar 并与其他启用 Perl 的 Centos 7 共享。”

之后,可以从 Sqitch 运行

# ./sqitch_bundle/bin/sqitch

现在要正常访问,我们需要在 .bashrc 或 .bash_profile 中添加路径,示例

PATH="/opt/App-Sqitch-v1.0.0/sqitch_bundle/bin/:$PATH"
于 2019-09-30T09:03:03.423 回答