EC2 Amazon Linux 快速安装Airbyte (abctl)
安装docker
AWS Amazon Linux3
sudo yum update -y
sudo yum install docker -y
sudo service docker start
sudo systemctl enable docker
sudo usermod -a -G docker ec2-user
AWS Amazon Linux2
sudo yum update -y
sudo amazon-linux-extras install docker -y
sudo service docker start
sudo systemctl enable docker
sudo usermod -a -G docker ec2-user
下载并安装abctl
curl -LsfS https://get.airbyte.com | bash -
快速安装Airbyte本地集群
abctl local install --insecure-cookies &
浏览管理界面
http://localhost:8000
获取默认密码
abctl local credentials
获取密码示例
Credentials:
Email: user@example.com
Password: a-random-password
Client-Id: 03ef466c-5558-4ca5-856b-4960ba7c161b
Client-Secret: m2UjnDO4iyBQ3IsRiy5GG3LaZWP6xs9I
官方安装文档地址
https://docs.airbyte.com/platform/using-airbyte/getting-started/oss-quickstart#part-2-install-abctl