Solved SnipeIT - Connection Refused
-
For some reason I'm unable to get to my snipeit installation.
Nothing is in the log files.
Has anyone else had this happen for no apparent reason?
-
Firewalld and SELinux can both cause this type of behavior. As can permissions on the www folder.
-
@coliver said in SnipeIT - Connection Refused:
Firewalld and SELinux can both cause this type of behavior.
Out of the blue though?
No changes have been made to the system, and I was using it just Friday.
-
@dustinb3403 said in SnipeIT - Connection Refused:
@coliver said in SnipeIT - Connection Refused:
Firewalld and SELinux can both cause this type of behavior.
Out of the blue though?
No changes have been made to the system, and I was using it just Friday.
Can you curl it from the local prompt?
-
Yeah.
-
I disabled firewalld with no resulting change.
It's like the services are just stopped, hrm. . .
-
I can ping both to and from the system.
-
@dustinb3403 said in SnipeIT - Connection Refused:
I can ping both to and from the system.
Ping via ip and dns?
-
@black3dynamite said in SnipeIT - Connection Refused:
@dustinb3403 said in SnipeIT - Connection Refused:
I can ping both to and from the system.
Ping via ip and dns?
Yep.
-
Are httpd and mariadb running?
-
@jaredbusch said in SnipeIT - Connection Refused:
Are httpd and mariadb running?
httpd isn't.
WTF. . .
-
OK so why is httpd not starting. . .
-
@dustinb3403 said in SnipeIT - Connection Refused:
OK so why is httpd not starting. . .
Have you try investigating the issue with these commands?
systemctl status httpd journalctl -xe
-
I'm looking at the logs, and the only thing of interest is
[Mon Aug 07 03:14:01.725621 2017] [auth_digest:notice] [pid 920] AH01757: generating secret for digest authentication ... [Mon Aug 07 03:14:01.726484 2017] [lbmethod_heartbeat:notice] [pid 920] AH02282: No slotmem from mod_heartmonitor [Mon Aug 07 03:14:01.751367 2017] [mpm_prefork:notice] [pid 920] AH00163: Apache/2.4.6 (CentOS) PHP/5.6.30 configured -- resuming normal operations [Mon Aug 07 03:14:01.751385 2017] [core:notice] [pid 920] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND' [Sun Aug 13 03:32:01.788305 2017] [mpm_prefork:notice] [pid 920] AH00171: Graceful restart requested, doing restart [Sun Aug 13 03:32:01.909526 2017] [so:warn] [pid 920] AH01574: module rewrite_module is already loaded, skipping AH00558: httpd: Could not reliably determine the server's fully qualified domain name, using localhost.localdomain. Set the 'ServerName' directive globally to suppress this message
-
The host name is set. . .
GNU nano 2.3.1 File: /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost.localdomain snipeit.OURDOMAIN.com
-
@dustinb3403 said in SnipeIT - Connection Refused:
The host name is set. . .
GNU nano 2.3.1 File: /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost.localdomain snipeit.OURDOMAIN.com
What's up with the duplicate entry for localhost?
-
@black3dynamite said in SnipeIT - Connection Refused:
@dustinb3403 said in SnipeIT - Connection Refused:
The host name is set. . .
GNU nano 2.3.1 File: /etc/hosts 127.0.0.1 localhost localhost.localdomain localhost4 localhost4.localdomain4 ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost.localdomain snipeit.OURDOMAIN.com
What's up with the duplicate entry for localhost?
Ask the co-worker. . . I've cleaned that up so it's just the one. And have just used
hostnamectl set-hostname
to set the name, rebooting -
@dustinb3403 Might also want to check out your httpd.conf and snipeit.conf file too.
-
[root@snipeit conf.d]# cat snipeit.conf ## Creating the new virtual host in Apache. LoadModule rewrite_module modules/mod_rewrite.so <VirtualHost *:80> ServerAdmin webmaster@localhost <Directory /var/www/html/snipeit/public> Allow From All AllowOverride All Options +Indexes </Directory> DocumentRoot /var/www/html/snipeit/public ServerName snipeit.domain.com ErrorLog /var/log/httpd/snipeIT.error.log CustomLog /var/log/access.log combined </VirtualHost>
And httpd.conf is set to the same fqdn
-
@dustinb3403 said in SnipeIT - Connection Refused:
[root@snipeit conf.d]# cat snipeit.conf
Creating the new virtual host in Apache.
LoadModule rewrite_module modules/mod_rewrite.so
<VirtualHost *:80>
ServerAdmin webmaster@localhost
<Directory /var/www/html/snipeit/public>
Allow From All
AllowOverride All
Options +Indexes
</Directory>
DocumentRoot /var/www/html/snipeit/public
ServerName snipeit.domain.com
ErrorLog /var/log/httpd/snipeIT.error.log
CustomLog /var/log/access.log combined
</VirtualHost>And httpd.conf is set to the same fqdn
Did the httpd.service startup successfully?