2021-01-28 05:46:14 UTC - 황보준호: hello I’m trying to build openwhisk in a centos server https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611812774000800 ---- 2021-01-28 05:47:33 UTC - 황보준호: I tried to change all the apt commands in the build script to yum but there are still tones of errors. Can somebody help me? https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611812853002000 ---- 2021-01-28 05:47:54 UTC - 황보준호: Or this there a workaround in a centos host such as using docker?? https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611812874002600?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:21:24 UTC - Dominic Kim: Hi. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611818484002700?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:21:30 UTC - Dominic Kim: What kinds of issues are you facing? https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611818490002900?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:21:37 UTC - Dominic Kim: We are running OpenWhisk on CentOS7. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611818497003100?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:21:56 UTC - Dominic Kim: If you want I can share some commands to set up a new machine for OpenWhisk. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611818516003300?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:38:04 UTC - 황보준호: I’m trying to build openwhisk but it fails. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611819484003700?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 07:38:28 UTC - 황보준호: It would be very helpful if you could share the commands to setup openwhisk!! https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611819508003900?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 08:07:35 UTC - Dominic Kim: ```sudo -i yum install -y epel-release yum update -y yum install -y yum-utils device-mapper-persistent-data lvm2 yum-config-manager --add-repo <https://download.docker.com/linux/centos/docker-ce.repo> mkdir /home/docker ln -s /home/docker /var/lib/docker yum install -y docker-ce-18.06.3.ce-3.el7 sed -i "s@ExecStart=/usr/bin/dockerd@ExecStart=/usr/bin/dockerd -H unix:///var/run/docker.sock@g" /lib/systemd/system/docker.service mkdir /etc/docker cat > /etc/docker/daemon.json << EOL { "storage-driver": "overlay2", "storage-opts": [ "overlay2.override_kernel_check=true" ], "live-restore": true } EOL systemctl daemon-reload systemctl start docker systemctl enable docker easy_install pip pip install jsonschema pip install argcomplete pip install couchdb pip install markupsafe pip install docker-py pip install httplib2==0.9.2 pip install requests==2.10.0``` https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611821255004100?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 08:07:43 UTC - Dominic Kim: These are what we do. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611821263004300?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 08:08:03 UTC - Dominic Kim: But you can selectively skip some commands as some of them are only for us. https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611821283004500?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:08:10 UTC - 황보준호: wow! https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611824890004700?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:08:21 UTC - 황보준호: thank you so much! +1 : Dominic Kim https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611824901004900?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:08:30 UTC - 황보준호: :grinning: https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611824910005100?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:09:03 UTC - Dominic Kim: FYI, we are using centos 7.x with a kernel-4.x https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611824943005400?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:49:06 UTC - 황보준호: After using `sudo ./gradlew core:standalone:bootRun` https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611827346005600?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:49:15 UTC - 황보준호: I came across this error… https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611827355006000?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:49:50 UTC - 황보준호: However, I installed the cli and which I checked by entering `wsk` . https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611827390006200?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:51:10 UTC - 황보준호: In addition, I opend the server port 3233 using `sudo firewall-cmd --zone=public --permanent --add-port=3233/tcp` and `sudo firewall-cmd --reload` https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611827470006400?thread_ts=1611812874.002600&cid=C79ALSWJJ ---- 2021-01-28 09:52:16 UTC - 황보준호: Can you please help me? Thanks! https://openwhisk-team.slack.com/archives/C79ALSWJJ/p1611827536006600?thread_ts=1611812874.002600&cid=C79ALSWJJ ----