I followed the tutorial here https://www.youtube.com/watch?v=gZMYG3e7IEc but no matter what I try I am unable to login to the backend or access any page
I am not the only one that cannot access it and I’ve tried all solutions by Google be it flush DNS, turn off firewall, and so on. This has gotten really frustrating when all I want to do is set up a new WordPress site install.
Here is the error log :
[Sun Jul 12 20:42:51.837091 2020] [mpm_prefork:notice] [pid 1017] AH00163: Apache/2.4.29 (Ubuntu) configured -- resuming normal operations
[Sun Jul 12 20:42:51.837203 2020] [core:notice] [pid 1017] AH00094: Command line: '/usr/sbin/apache2'
[Sun Jul 12 20:55:09.318531 2020] [mpm_prefork:notice] [pid 1017] AH00169: caught SIGTERM, shutting down
[Sun Jul 12 20:55:09.451849 2020] [mpm_prefork:notice] [pid 2103] AH00163: Apache/2.4.29 (Ubuntu) configured -- resuming normal operations
[Sun Jul 12 20:55:09.451934 2020] [core:notice] [pid 2103] AH00094: Command line: '/usr/sbin/apache2'
[Sun Jul 12 20:57:26.843173 2020] [mpm_prefork:notice] [pid 2103] AH00171: Graceful restart requested, doing restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
[Sun Jul 12 20:57:26.907357 2020] [mpm_prefork:notice] [pid 2103] AH00163: Apache/2.4.29 (Ubuntu) configured -- resuming normal operations
[Sun Jul 12 20:57:26.907374 2020] [core:notice] [pid 2103] AH00094: Command line: '/usr/sbin/apache2'
[Sun Jul 12 20:57:33.445518 2020] [mpm_prefork:notice] [pid 2103] AH00171: Graceful restart requested, doing restart
AH00558: apache2: Could not reliably determine the server's fully qualified domain name, using 127.0.1.1. Set the 'ServerName' directive globally to suppress this message
[Sun Jul 12 20:57:33.541964 2020] [mpm_prefork:notice] [pid 2103] AH00163: Apache/2.4.29 (Ubuntu) configured -- resuming normal operations
[Sun Jul 12 20:57:33.541980 2020] [core:notice] [pid 2103] AH00094: Command line: '/usr/sbin/apache2'
[Mon Jul 13 04:59:36.905662 2020] [mpm_prefork:notice] [pid 2103] AH00169: caught SIGTERM, shutting down
[Mon Jul 13 04:59:37.062952 2020] [mpm_prefork:notice] [pid 6840] AH00163: Apache/2.4.29 (Ubuntu) configured -- resuming normal operations
[Mon Jul 13 04:59:37.063037 2020] [core:notice] [pid 6840] AH00094: Command line: '/usr/sbin/apache2'
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Enter your email to get $200 in credit for your first 60 days with DigitalOcean.
New accounts only. By submitting your email you agree to our Privacy Policy.
Hi there,
The error log you posted doesn’t seem to contain any specific error messages related to the problem you’re experiencing with your site, but one warning message does stand out:
This message indicates that Apache is unable to determine the FQDN of your server. While this alone wouldn’t prevent your site from loading, it might point to an issue in your configuration.
Here are some steps you can take to further troubleshoot this issue:
Set the ServerName Directive:
/etc/apache2/apache2.conf
.ServerName zway.com
.sudo systemctl restart apache2
.Check Your Virtual Host Configuration:
/etc/apache2/sites-available/
) is set up correctly.ServerName
andDocumentRoot
directives.Check Your DNS Settings:
dig
ornslookup
to verify the DNS settings.Examine Apache’s Error Log:
/var/log/apache2/error.log
.Verify Firewall and Network Settings:
Try Loading the Site from a Different Device/Network:
Ensure Necessary Modules are Enabled:
If you continue to encounter problems, I could suggest using the 1-Click WordPress installation here:
Best,
Bobby