You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@fineract.apache.org by ronald munjoma <si...@gmail.com> on 2022/05/12 09:15:02 UTC

Fineract Docker - HTTP Status 404 – Not Found

Dear All,

I am running Apache Fineract on my local machine, following the Docker
instructions
<https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>

I am getting HTTP Status 404 – Not Found when I open https://0.0.0.0:8443/
in my browser

http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
 retunds sites can not be reached

https://localhost:8443/fineract-provider/  returns

Whitelabel Error Page

This application has no explicit mapping for /error, so you are seeing this
as a fallback.
Thu May 12 09:06:08 GMT 2022
There was an unexpected error (type=Not Found, status=404).

https://localhost:8443/fineract-provider/actuator/health returns
{

   - status: "UP",
   - groups:
   [
      - "liveness",
      - "readiness"
      ]

}

Docker logs - https://pastebin.com/n6a9dRJH

Your assistance in getting Fineract up and running will be highly
appreciated

-- 
Best and Regards
Ronald Munjoma
+263 775 625 283


[image: --]

Ronald Munjoma
[image: https://]about.me/ronaldmunjoma
<https://about.me/ronaldmunjoma?promo=email_sig>

Re: Fineract Docker - HTTP Status 404 – Not Found

Posted by Arnold Galovics <ar...@apache.org>.
Hi Ronald,

Sure thing. I'm glad it's working now.

Best,
Arnold

On Thu, May 12, 2022 at 4:18 PM ronald munjoma <si...@gmail.com> wrote:

> Hi Arnold,
>
> Thank you very much, I have pulled the community app and everything is
> working as expected.
>
> Thanks
> Ronald
>
> On Thu, 12 May 2022 at 13:01, Arnold Galovics <ar...@apache.org> wrote:
>
>> Hi Ronald,
>>
>> This is expected behavior. The API by default is available on port 8443
>> and has the context root path of fineract-provider which means that on
>> https://localhost:8443 you'll find a 404. The root of the APIs is
>> https://localhost:8443/fineract-provider.
>>
>> On another note, the reason the UI doesn't load for you is due to the
>> fact that we've split up the docker-compose files into 2 parts. One for the
>> fineract backend and one for the fineract community app.
>> The docker-compose file you're using only starts up the fineract backend.
>> There's another docker-compose file for the community app
>> called docker-compose-community-app.yml in the root of the project.
>>
>> Hope that helps.
>>
>> Best,
>> Arnold
>>
>> On Thu, May 12, 2022 at 12:56 PM ronald munjoma <si...@gmail.com>
>> wrote:
>>
>>> Hi Aleksandar,
>>>
>>> I pulled the develop branch, and ran
>>>
>>> ./gradlew :fineract-provider:jibDockerBuild -x test
>>> docker-compose up -d
>>>
>>> Thanks
>>> Ronald
>>>
>>> On Thu, 12 May 2022 at 12:42, Aleksandar Vidakovic <al...@apache.org>
>>> wrote:
>>>
>>>> ... which version?
>>>>
>>>> On Thu, 12 May 2022, 11:16 ronald munjoma, <si...@gmail.com> wrote:
>>>>
>>>>> Dear All,
>>>>>
>>>>> I am running Apache Fineract on my local machine, following the Docker
>>>>> instructions
>>>>> <https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>
>>>>>
>>>>> I am getting HTTP Status 404 – Not Found when I open
>>>>> https://0.0.0.0:8443/ in my browser
>>>>>
>>>>> http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
>>>>>  retunds sites can not be reached
>>>>>
>>>>> https://localhost:8443/fineract-provider/  returns
>>>>>
>>>>> Whitelabel Error Page
>>>>>
>>>>> This application has no explicit mapping for /error, so you are seeing
>>>>> this as a fallback.
>>>>> Thu May 12 09:06:08 GMT 2022
>>>>> There was an unexpected error (type=Not Found, status=404).
>>>>>
>>>>> https://localhost:8443/fineract-provider/actuator/health returns
>>>>> {
>>>>>
>>>>>    - status: "UP",
>>>>>    - groups:
>>>>>    [
>>>>>       - "liveness",
>>>>>       - "readiness"
>>>>>       ]
>>>>>
>>>>> }
>>>>>
>>>>> Docker logs - https://pastebin.com/n6a9dRJH
>>>>>
>>>>> Your assistance in getting Fineract up and running will be highly
>>>>> appreciated
>>>>>
>>>>> --
>>>>> Best and Regards
>>>>> Ronald Munjoma
>>>>> +263 775 625 283
>>>>>
>>>>>
>>>>> [image: --]
>>>>>
>>>>> Ronald Munjoma
>>>>> [image: https://]about.me/ronaldmunjoma
>>>>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>>>>
>>>>
>>>
>>> --
>>> Best and Regards
>>> Ronald Munjoma
>>> +263 775 625 283
>>>
>>>
>>> [image: --]
>>>
>>> Ronald Munjoma
>>> [image: https://]about.me/ronaldmunjoma
>>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>>
>>
>
> --
> Best and Regards
> Ronald Munjoma
> +263 775 625 283
>
>
> [image: --]
>
> Ronald Munjoma
> [image: https://]about.me/ronaldmunjoma
> <https://about.me/ronaldmunjoma?promo=email_sig>
>

Re: Fineract Docker - HTTP Status 404 – Not Found

Posted by ronald munjoma <si...@gmail.com>.
Hi Arnold,

Thank you very much, I have pulled the community app and everything is
working as expected.

Thanks
Ronald

On Thu, 12 May 2022 at 13:01, Arnold Galovics <ar...@apache.org> wrote:

> Hi Ronald,
>
> This is expected behavior. The API by default is available on port 8443
> and has the context root path of fineract-provider which means that on
> https://localhost:8443 you'll find a 404. The root of the APIs is
> https://localhost:8443/fineract-provider.
>
> On another note, the reason the UI doesn't load for you is due to the fact
> that we've split up the docker-compose files into 2 parts. One for the
> fineract backend and one for the fineract community app.
> The docker-compose file you're using only starts up the fineract backend.
> There's another docker-compose file for the community app
> called docker-compose-community-app.yml in the root of the project.
>
> Hope that helps.
>
> Best,
> Arnold
>
> On Thu, May 12, 2022 at 12:56 PM ronald munjoma <si...@gmail.com> wrote:
>
>> Hi Aleksandar,
>>
>> I pulled the develop branch, and ran
>>
>> ./gradlew :fineract-provider:jibDockerBuild -x test
>> docker-compose up -d
>>
>> Thanks
>> Ronald
>>
>> On Thu, 12 May 2022 at 12:42, Aleksandar Vidakovic <al...@apache.org>
>> wrote:
>>
>>> ... which version?
>>>
>>> On Thu, 12 May 2022, 11:16 ronald munjoma, <si...@gmail.com> wrote:
>>>
>>>> Dear All,
>>>>
>>>> I am running Apache Fineract on my local machine, following the Docker
>>>> instructions
>>>> <https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>
>>>>
>>>> I am getting HTTP Status 404 – Not Found when I open
>>>> https://0.0.0.0:8443/ in my browser
>>>>
>>>> http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
>>>>  retunds sites can not be reached
>>>>
>>>> https://localhost:8443/fineract-provider/  returns
>>>>
>>>> Whitelabel Error Page
>>>>
>>>> This application has no explicit mapping for /error, so you are seeing
>>>> this as a fallback.
>>>> Thu May 12 09:06:08 GMT 2022
>>>> There was an unexpected error (type=Not Found, status=404).
>>>>
>>>> https://localhost:8443/fineract-provider/actuator/health returns
>>>> {
>>>>
>>>>    - status: "UP",
>>>>    - groups:
>>>>    [
>>>>       - "liveness",
>>>>       - "readiness"
>>>>       ]
>>>>
>>>> }
>>>>
>>>> Docker logs - https://pastebin.com/n6a9dRJH
>>>>
>>>> Your assistance in getting Fineract up and running will be highly
>>>> appreciated
>>>>
>>>> --
>>>> Best and Regards
>>>> Ronald Munjoma
>>>> +263 775 625 283
>>>>
>>>>
>>>> [image: --]
>>>>
>>>> Ronald Munjoma
>>>> [image: https://]about.me/ronaldmunjoma
>>>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>>>
>>>
>>
>> --
>> Best and Regards
>> Ronald Munjoma
>> +263 775 625 283
>>
>>
>> [image: --]
>>
>> Ronald Munjoma
>> [image: https://]about.me/ronaldmunjoma
>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>
>

-- 
Best and Regards
Ronald Munjoma
+263 775 625 283


[image: --]

Ronald Munjoma
[image: https://]about.me/ronaldmunjoma
<https://about.me/ronaldmunjoma?promo=email_sig>

Re: Fineract Docker - HTTP Status 404 – Not Found

Posted by Arnold Galovics <ar...@apache.org>.
Hi Ronald,

This is expected behavior. The API by default is available on port 8443 and
has the context root path of fineract-provider which means that on
https://localhost:8443 you'll find a 404. The root of the APIs is
https://localhost:8443/fineract-provider.

On another note, the reason the UI doesn't load for you is due to the fact
that we've split up the docker-compose files into 2 parts. One for the
fineract backend and one for the fineract community app.
The docker-compose file you're using only starts up the fineract backend.
There's another docker-compose file for the community app
called docker-compose-community-app.yml in the root of the project.

Hope that helps.

Best,
Arnold

On Thu, May 12, 2022 at 12:56 PM ronald munjoma <si...@gmail.com> wrote:

> Hi Aleksandar,
>
> I pulled the develop branch, and ran
>
> ./gradlew :fineract-provider:jibDockerBuild -x test
> docker-compose up -d
>
> Thanks
> Ronald
>
> On Thu, 12 May 2022 at 12:42, Aleksandar Vidakovic <al...@apache.org>
> wrote:
>
>> ... which version?
>>
>> On Thu, 12 May 2022, 11:16 ronald munjoma, <si...@gmail.com> wrote:
>>
>>> Dear All,
>>>
>>> I am running Apache Fineract on my local machine, following the Docker
>>> instructions
>>> <https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>
>>>
>>> I am getting HTTP Status 404 – Not Found when I open
>>> https://0.0.0.0:8443/ in my browser
>>>
>>> http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
>>>  retunds sites can not be reached
>>>
>>> https://localhost:8443/fineract-provider/  returns
>>>
>>> Whitelabel Error Page
>>>
>>> This application has no explicit mapping for /error, so you are seeing
>>> this as a fallback.
>>> Thu May 12 09:06:08 GMT 2022
>>> There was an unexpected error (type=Not Found, status=404).
>>>
>>> https://localhost:8443/fineract-provider/actuator/health returns
>>> {
>>>
>>>    - status: "UP",
>>>    - groups:
>>>    [
>>>       - "liveness",
>>>       - "readiness"
>>>       ]
>>>
>>> }
>>>
>>> Docker logs - https://pastebin.com/n6a9dRJH
>>>
>>> Your assistance in getting Fineract up and running will be highly
>>> appreciated
>>>
>>> --
>>> Best and Regards
>>> Ronald Munjoma
>>> +263 775 625 283
>>>
>>>
>>> [image: --]
>>>
>>> Ronald Munjoma
>>> [image: https://]about.me/ronaldmunjoma
>>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>>
>>
>
> --
> Best and Regards
> Ronald Munjoma
> +263 775 625 283
>
>
> [image: --]
>
> Ronald Munjoma
> [image: https://]about.me/ronaldmunjoma
> <https://about.me/ronaldmunjoma?promo=email_sig>
>

Re: Fineract Docker - HTTP Status 404 – Not Found

Posted by ronald munjoma <si...@gmail.com>.
Hi Aleksandar,

I pulled the develop branch, and ran

./gradlew :fineract-provider:jibDockerBuild -x test
docker-compose up -d

Thanks
Ronald

On Thu, 12 May 2022 at 12:42, Aleksandar Vidakovic <al...@apache.org> wrote:

> ... which version?
>
> On Thu, 12 May 2022, 11:16 ronald munjoma, <si...@gmail.com> wrote:
>
>> Dear All,
>>
>> I am running Apache Fineract on my local machine, following the Docker
>> instructions
>> <https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>
>>
>> I am getting HTTP Status 404 – Not Found when I open
>> https://0.0.0.0:8443/ in my browser
>>
>> http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
>>  retunds sites can not be reached
>>
>> https://localhost:8443/fineract-provider/  returns
>>
>> Whitelabel Error Page
>>
>> This application has no explicit mapping for /error, so you are seeing
>> this as a fallback.
>> Thu May 12 09:06:08 GMT 2022
>> There was an unexpected error (type=Not Found, status=404).
>>
>> https://localhost:8443/fineract-provider/actuator/health returns
>> {
>>
>>    - status: "UP",
>>    - groups:
>>    [
>>       - "liveness",
>>       - "readiness"
>>       ]
>>
>> }
>>
>> Docker logs - https://pastebin.com/n6a9dRJH
>>
>> Your assistance in getting Fineract up and running will be highly
>> appreciated
>>
>> --
>> Best and Regards
>> Ronald Munjoma
>> +263 775 625 283
>>
>>
>> [image: --]
>>
>> Ronald Munjoma
>> [image: https://]about.me/ronaldmunjoma
>> <https://about.me/ronaldmunjoma?promo=email_sig>
>>
>

-- 
Best and Regards
Ronald Munjoma
+263 775 625 283


[image: --]

Ronald Munjoma
[image: https://]about.me/ronaldmunjoma
<https://about.me/ronaldmunjoma?promo=email_sig>

Re: Fineract Docker - HTTP Status 404 – Not Found

Posted by Aleksandar Vidakovic <al...@apache.org>.
... which version?

On Thu, 12 May 2022, 11:16 ronald munjoma, <si...@gmail.com> wrote:

> Dear All,
>
> I am running Apache Fineract on my local machine, following the Docker
> instructions
> <https://github.com/apache/fineract#instructions-to-run-using-docker-and-docker-compose>
>
> I am getting HTTP Status 404 – Not Found when I open https://0.0.0.0:8443/
> in my browser
>
> http://localhost:9090/?baseApiUrl=https://localhost:8443/fineract-provider&tenantIdentifier=default
>  retunds sites can not be reached
>
> https://localhost:8443/fineract-provider/  returns
>
> Whitelabel Error Page
>
> This application has no explicit mapping for /error, so you are seeing
> this as a fallback.
> Thu May 12 09:06:08 GMT 2022
> There was an unexpected error (type=Not Found, status=404).
>
> https://localhost:8443/fineract-provider/actuator/health returns
> {
>
>    - status: "UP",
>    - groups:
>    [
>       - "liveness",
>       - "readiness"
>       ]
>
> }
>
> Docker logs - https://pastebin.com/n6a9dRJH
>
> Your assistance in getting Fineract up and running will be highly
> appreciated
>
> --
> Best and Regards
> Ronald Munjoma
> +263 775 625 283
>
>
> [image: --]
>
> Ronald Munjoma
> [image: https://]about.me/ronaldmunjoma
> <https://about.me/ronaldmunjoma?promo=email_sig>
>