ERROR: when change the old link project to new link

Hi Team,

I’ve 8.13.0 omnibus installation and also i’m the owner of my project on gitlab.
but recently I’ve change the domain for security reason, after that I checked the project link but still my project use the old link(domain)…

i don’t know what i’m doing wrong.
Then i created the dummy project to check the problem, but same problem i’m facing.

Hi moreno,

Sure, I can help you on this and to resolve it i would need below information.

[Its ok to run below commands in production server]

If you have not changed log directories settings, then you can find all the logs in “/var/log/gitlab/” and i would request you to attach all logs here.
Else, you can find the location of log directories in /etc/gitlab/gitlab.rb file, there are many log_directory keys for the various types of logs.

For example : /etc/gitlab/gitlab.rb

    gitlab_rails['log_directory'] = "/var/log/gitlab/gitlab-rails"
    unicorn['log_directory'] = "/var/log/gitlab/unicorn"
    registry['log_directory'] = "/var/log/gitlab/registry"
    .
    .

and also I would need below information:

to check the gitlab environment information(system information):
gitlab-rake gitlab:env:info

to check hostname of the machine:
hostname

verify hostname of machine:
cat /etc/hosts

to check url for gitlab:
cat /etc/gitlab/gitlab.rb | grep external_url

to check gitlab component:
sudo gitlab-ctl status

to check DNS on your machine and the machines you are testing your URL:
nslookup your domain name

to check the route:
traceroute your domain name

to check port is open for GitLab or not:
netstat -tlpn

to check selinux status:
sestatus

to check any firewall enabled or not:
iptables --list

Thanks!