【问题标题】:AWS CodeDeploy agent not installing on ubuntu 22.04AWS CodeDeploy 代理未安装在 ubuntu 22.04 上
【发布时间】:2022-08-17 01:10:17
【问题描述】:

我尝试在ubuntu 22.04 上安装 codedeploy 代理,但无法正常工作。我已经通过 rbenv 安装了ruby 2.6.0

ubuntu@ip-172-31-37-7:~$ sudo ./install --sanity-check  deb
I, [2022-08-10T06:26:28.905059 #47961]  INFO -- : Starting Ruby version check.
I, [2022-08-10T06:26:28.905394 #47961]  INFO -- : Starting update check.
I, [2022-08-10T06:26:28.905593 #47961]  INFO -- : Checking AWS_REGION environment variable for region information...
I, [2022-08-10T06:26:28.905770 #47961]  INFO -- : Checking EC2 metadata service for region information...
I, [2022-08-10T06:26:28.921018 #47961]  INFO -- : Checking AWS_DOMAIN environment variable for domain information...
I, [2022-08-10T06:26:28.921228 #47961]  INFO -- : Checking EC2 metadata service for domain information...
I, [2022-08-10T06:26:28.926802 #47961]  INFO -- : Downloading version file from bucket aws-codedeploy-ap-south-1 and key latest/LATEST_VERSION...
I, [2022-08-10T06:26:28.927009 #47961]  INFO -- : Endpoint: https://aws-codedeploy-ap-south-1.s3.ap-south-1.amazonaws.com/latest/LATEST_VERSION
I, [2022-08-10T06:26:28.966467 #47961]  INFO -- : Running version 1.3.2-1902
I, [2022-08-10T06:26:28.966733 #47961]  INFO -- : Running version matches target version, skipping install
I, [2022-08-10T06:26:28.966856 #47961]  INFO -- : Update check complete.
I, [2022-08-10T06:26:28.966972 #47961]  INFO -- : Stopping updater.

我也尝试手动安装 .deb 文件但无法正常工作

ubuntu@ip-172-31-37-7:~$ sudo dpkg -i codedeploy-agent_1.3.2-1902_all.deb 
(Reading database ... 75862 files and directories currently installed.)
Preparing to unpack codedeploy-agent_1.3.2-1902_all.deb ...
Failed to stop codedeploy-agent.service: Unit codedeploy-agent.service not loaded.
Unable to stop the running codedeploy-agent
Canceling upgrade.
dpkg: error processing archive codedeploy-agent_1.3.2-1902_all.deb (--install):
 new codedeploy-agent package pre-installation script subprocess returned error exit status 1
Errors were encountered while processing:
 codedeploy-agent_1.3.2-1902_all.deb

标签: amazon-web-services amazon-ec2 server devops aws-code-deploy


【解决方案1】:

按顺序运行以下命令:


sudo apt-get install ruby-full ruby-webrick wget -y

cd /tmp

wget https://aws-codedeploy-us-east-1.s3.us-east-1.amazonaws.com/releases/codedeploy-agent_1.3.2-1902_all.deb

mkdir codedeploy-agent_1.3.2-1902_ubuntu22

dpkg-deb -R codedeploy-agent_1.3.2-1902_all.deb codedeploy-agent_1.3.2-1902_ubuntu22

sed 's/Depends:.*/Depends:ruby3.0/' -i ./codedeploy-agent_1.3.2-1902_ubuntu22/DEBIAN/control

dpkg-deb -b codedeploy-agent_1.3.2-1902_ubuntu22/

sudo dpkg -i codedeploy-agent_1.3.2-1902_ubuntu22.deb

sudo systemctl list-units --type=service | grep codedeploy

sudo service codedeploy-agent status

【讨论】:

    猜你喜欢
    • 2022-08-14
    • 1970-01-01
    • 2022-06-14
    • 2023-01-11
    • 2022-07-06
    • 2022-10-19
    • 2022-12-03
    • 2022-12-18
    • 2022-10-15
    相关资源
    最近更新 更多