New installation issues

I just installed on Ubuntu 19.04. All is well until I tried to login for the first time. So, install.php is giving me a login screen, but none of my credentials work. I ran the validate script, here is the output:
====================================
Component | Version
--------- | -------
LibreNMS | 1.53-1-g8ad55b55b
DB Schema | 2019_05_30_225937_device_groups_rewrite (135)
PHP | 7.2.19-0ubuntu0.19.04.1
MySQL | 10.3.13-MariaDB-2
RRDTool | 1.7.1
SNMP | NET-SNMP 5.7.3
====================================

[OK]    Composer Version: 1.8.6
[OK]    Dependencies up-to-date.
[OK]    Database connection successful
[OK]    Database schema correct
[WARN]  You have not added any devices yet.
	[FIX]: 
	You can add a device in the webui or with ./addhost.php
[WARN]  Your install is over 24 hours out of date, last update: Mon, 01 Jul 2019 13:06:27 +0000
	[FIX]: 
	Make sure your daily.sh cron is running and run ./daily.sh by hand to see if there are any errors.
[WARN]  Your local git contains modified files, this could prevent automatic updates.
	[FIX]: 
	You can fix this with ./scripts/github-remove
	Modified Files:
	 .codeclimate.yml
	 .editorconfig
	 .env.dusk.testing
	 .env.example
	 .github/ISSUE_TEMPLATE.md
	 .github/ISSUE_TEMPLATE/New-Device.md
	 .github/PULL_REQUEST_TEMPLATE.md
	 .github/ci-reporter.yml
	 .github/label-actions.yml
	 .github/lock.yml
	 .github/no-response.yml
	 .github/stale.yml
	 .gitignore
	 .mention-bot
	 .scrutinizer.yml
	  and 9815 more...

And when I try to run the daily, I get this:

Updating to latest codebase                        FAIL
error: Your local changes to the following files would be overwritten by merge:
	app/Http/Controllers/Widgets/ComponentStatusController.php
	doc/Extensions/Applications.md
	doc/General/Changelog.md
	includes/common.php
	includes/definitions/discovery/fortigate.yaml
	includes/definitions/voss.yaml
	includes/definitions/xos.yaml
	includes/html/functions.inc.php
	includes/html/pages/wireless.inc.php
	includes/html/table/sensors-common.php
	includes/html/table/sensors.inc.php
	includes/html/table/wireless-sensors.inc.php
Please commit your changes or stash them before you merge.
Aborting
Updating Composer packages                         OK
Updating SQL-Schema                                OK
Updating submodules                                OK
Cleaning up DB                                     OK
Fetching notifications                             OK
Caching PeeringDB data                             OK

run ./scripts/github-remove -d and then ./daily.sh and then validate.php

Okay, looking good! Thanks! I still have two issues; I have set the permission several times to no avail, and when I go to http://localhost/install.php, I get a login screen, but none of the credentials work.

====================================
Component | Version
--------- | -------
LibreNMS  | 1.53.1-6-g161849219
DB Schema | 2019_05_30_225937_device_groups_rewrite (135)
PHP       | 7.2.19-0ubuntu0.19.04.1
MySQL     | 10.3.13-MariaDB-2
RRDTool   | 1.7.1
SNMP      | NET-SNMP 5.7.3
====================================

[OK]    Composer Version: 1.8.6
[OK]    Dependencies up-to-date.
[OK]    Database connection successful
[OK]    Database schema correct
[WARN]  You have not added any devices yet.
	[FIX]: 
	You can add a device in the webui or with ./addhost.php
[FAIL]  Some folders have incorrect file permissions, this may cause issues.
	[FIX]: 
	sudo chown -R librenms:librenms /opt/librenms
	sudo setfacl -d -m g::rwx /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/
	sudo chmod -R ug=rwX /opt/librenms/rrd /opt/librenms/logs /opt/librenms/bootstrap/cache/ /opt/librenms/storage/
	Files:
	 /opt/librenms/storage/framework/views/.gitignore

So I found this error in the log file:

[2019-07-03 09:19:07] production.ERROR: Auth Error (mysql): No user () [librenms]

Yet, I can log into the database with those credentials. I cannot however access the users folder in the database. Is this part of my issue??

MariaDB [(none)]> show grants;
±----------------------------------------------------------------------------------------------------------------+
| Grants for librenms@localhost |
±----------------------------------------------------------------------------------------------------------------+
| GRANT USAGE ON . TO ‘librenms’@‘localhost’ IDENTIFIED BY PASSWORD '1BD3B8B249B3A457CAE5EB31F72878A03A55AD8B’ |
| GRANT ALL PRIVILEGES ON librenms.
TO ‘librenms’@‘localhost’ |
±----------------------------------------------------------------------------------------------------------------+

Okay, my issue was I pre-configured the config.php (don’t do that). I deleted the file and I was able to access install wizard.