|
@@ -14,7 +14,7 @@ and will assumes that your server has:</summary>
|
|
######
|
|
######
|
|
Install required packages:
|
|
Install required packages:
|
|
```
|
|
```
|
|
-dnf install wget nano postgresql-server postgresql-contrib nginx
|
|
|
|
|
|
+dnf install wget nano tar unzip postgresql-server postgresql-contrib nginx
|
|
```
|
|
```
|
|
|
|
|
|
######
|
|
######
|
|
@@ -64,3 +64,25 @@ postgres=# alter database fusionauth owner to fusionauth;
|
|
postgres=# \q
|
|
postgres=# \q
|
|
```
|
|
```
|
|
|
|
|
|
|
|
+######
|
|
|
|
+Download latest available version from FusionAuth website (at the time of writing this was 1.51.2)
|
|
|
|
+```
|
|
|
|
+VERSION=$(curl -fsSL https://license.fusionauth.io/api/latest-version)
|
|
|
|
+curl -fsSL https://files.fusionauth.io/products/fusionauth/${VERSION}/fusionauth-app-${VERSION}-1.noarch.rpm > fusionauth-app-${VERSION}-1.noarch.rpm
|
|
|
|
+dnf install fusionauth-app-1.51.2-1.noarch.rpm
|
|
|
|
+
|
|
|
|
+# OPTIONAL Install for Fusionauth-search
|
|
|
|
+curl -fsSL https://files.fusionauth.io/products/fusionauth/${VERSION}/fusionauth-search-${VERSION}-1.noarch.rpm > fusionauth-search-${VERSION}-1.noarch.rpm
|
|
|
|
+dnf install fusionauth-search-1.51.2-1.noarch.rpm
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+######
|
|
|
|
+Start the fusionauth server.
|
|
|
|
+```
|
|
|
|
+systemctl start fusionauth-app
|
|
|
|
+
|
|
|
|
+# if you also installed the search -package also start that one
|
|
|
|
+systemctl start fusionauth-search
|
|
|
|
+```
|
|
|
|
+
|
|
|
|
+Your fusionauth server should now be running, and available via (http) on port 9011
|