Error executing action create on resource ‘storage_directory[/***/git-data]’
原因是执行用户需要有执行权限。
解决方案是:切换到对应目录去执行sudo gitlab-ctl reconfigure 。
登录系统,执行修改配置路径,来修改数据仓库的地址:vim /etc/gitlab/gitlab.rb
当然你也可以把路径修改为:git_data_dirs({ “default” => { “path” => “/mnt/sda3/git-data” } })
这两种方式都可以。
git_data_dir "/mnt/sda3/git-data"这种修改方式刷新配置时会报下面的错误:
就是该方式已经在11.0被废弃了。11.0以后版本使用git_data_dirs代替了。
官方文档说是修改权限就可以,实际执行结果还是不行。我当时的操作目录是:[root@localhost ~]#sudo gitlab-ctl reconfigure。
报错信息如下:
我切换到目标路径,再刷新配置成功了。
[root@localhost /]# sudo chmod +x /mnt
您在 /var/spool/mail/root 中有新邮件
[root@localhost /]# sudo chmod +x /mnt/sda3
[root@localhost /]# sudo chmod +x /mnt/sda3/git-data
[root@localhost /]# cd /mnt/sda3
[root@localhost sda3]# ls
git git-data lost+found
[root@localhost sda3]# cd git-data
[root@localhost git-data]# ls
[root@localhost git-data]# sudo gitlab-ctl reconfigure