Don't see gitlab ce front page after server restart

Hi!
New to gitlab ce ,
Installed it in my centos7 LAMP server,
Everything worked great than I restarted my server and the gitlab is not loading anymore,I see the Apache page though…
I did gitlab-ctl start
this is the outcome
ok: run: alertmanager: (pid 3729) 1s ok: run: gitaly: (pid 3737) 0s ok: run: gitlab-monitor: (pid 3748) 1s ok: run: gitlab-workhorse: (pid 3751) 0s ok: run: logrotate: (pid 3759) 1s ok: run: nginx: (pid 3773) 0s ok: run: node-exporter: (pid 3777) 0s ok: run: postgres-exporter: (pid 3781) 1s ok: run: postgresql: (pid 3786) 0s ok: run: prometheus: (pid 3789) 1s ok: run: redis: (pid 3803) 0s ok: run: redis-exporter: (pid 3808) 1s ok: run: sidekiq: (pid 3813) 0s ok: run: unicorn: (pid 3818) 0s

than I did gitlab-ctl status
and it says
`

run: alertmanager: (pid 3729) 496s; run: log: (pid 1504) 1307s
run: gitaly: (pid 3737) 495s; run: log: (pid 1487) 1307s
run: gitlab-monitor: (pid 3748) 495s; run: log: (pid 1496) 1307s
run: gitlab-workhorse: (pid 3751) 494s; run: log: (pid 1479) 1307s
run: logrotate: (pid 3759) 494s; run: log: (pid 1485) 1307s
run: nginx: (pid 4945) 0s; run: log: (pid 1481) 1307s
run: node-exporter: (pid 3777) 493s; run: log: (pid 1489) 1307s
run: postgres-exporter: (pid 3781) 493s; run: log: (pid 1499) 1307s
run: postgresql: (pid 3786) 492s; run: log: (pid 1470) 1307s
run: prometheus: (pid 3789) 492s; run: log: (pid 1503) 1307s
run: redis: (pid 3803) 491s; run: log: (pid 1466) 1307s
run: redis-exporter: (pid 3808) 491s; run: log: (pid 1502) 1307s
run: sidekiq: (pid 3813) 490s; run: log: (pid 1472) 1307s
run: unicorn: (pid 3818) 490s; run: log: (pid 1483) 1307s
`

What cant be the reason I gitlab is not working
Thanks!
David

Hey David,

The Omnibus installation comes packaged with Ngnix as the web server, so Apache isn’t needed. It’s likely that when you restarted the server, Apache was started first and thus a port conflict was caused with the Ngnix process.

If you stop and disable Apache, then restart Nginx, does this resolve your issue? This documentation can walk you through disabling Apache on boot for your distro. You can then run gitlab-ctl restart nginx to restart the bundled Nginx instance (you should see an ok output after the command is run).