自己总结的,断断续续安装了几十天,最后想放弃的时候,还是忍住了,总结一下安装的几个问题
1.gitlab-ce:armhf 一直提示安装不上
2.gitlab-rails console无反应
3./opt/gitlab/embedded/bin/ruby: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
一共出现的这几种问题,真的是百度都百度不出来,难受死了
先说下第一种问题解决方案
1.首先你的4B装的是64位系统。官方说的是不支持64位,支持32位,其实64位也可以安装。
系统安装源需要更改成他默认的
安装流程可以按照官方的来
https://about.gitlab.com/install/#raspberry-pi-os
第一步会报错,gitlab-ce:armhf
这个情况我也试了很多种解决办法都不行
最后是使用了
https://packages.gitlab.com/gitlab/raspberry-pi2/packages/raspbian/buster/gitlab-ce_13.7.0-ce.0_armhf.deb
第三步也经常使用不了,因为文件有800M,太大了,经常会下载失败,我下载也是10几次,才下载成功
下载成功之后,需要解压安装这个文件
sudo dpkg -i gitlab-ce_xxxxxxxxxxxx_armhf.deb
安装之后会提示
上面warning 不用管,是因为你这个64位系统有很多软件不兼容,这个到时候用哪个,在下载哪个就好
第二种问题解决方案
https://www.58jb.com/html/gitlab-upgrade-failure.html
第三种问题解决方案
我是查到的
https://blog.csdn.net/u011865919/article/details/107219091/
sudo apt install libstdc++6:armhf
ln -s /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.25 /usr/lib/libstdc++.so.6
使用这两个命令,就可以了
最后重启一下gitlab配置即可访问你自己设置的ip端口页面了