This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

6.3.4 upgrade fails to authenticate to Filr

I have upgrade the Advanced Authentication from 6.3.3 to 6.3.4 security updates. Before I was able to login with the Filr Desktop Client and the web client. Now it hangs after the approval on my mobile and I am not able to login.

In the web client I see a message 'WebAuth feature is not running'.

In the Filr desktop client I get this error, but it was already there for a long time while it was working anyway:

[WARNING] Unhandled HTTP error: 302 (aa.<<domain>>/.../grant (aca.onprem.apiserver.restapi).

Anyone?

 

 

 

Parents
  • 0

    Workaround:

    docker cp aaf_aucore_1:/opt/AuCore/static/nginx.conf.j2 /tmp/​

    vi /tmp/nginx.conf.j2 â€‹

    Change proxy_buffer_size value from 8k to 16k, so it must be:​
    proxy_buffer_size 16k;​

    Add a couple of new lines below:​
    proxy_busy_buffers_size 24k;​
    proxy_buffers 64 4k;​

    docker cp /tmp/nginx.conf.j2 aaf_aucore_1:/opt/AuCore/static/​

    systemctl restart aauth​

     

    The proposed values may not be enough if a user is a member of about 100 groups. We are currently working to estimate the optimal values.

Reply
  • 0

    Workaround:

    docker cp aaf_aucore_1:/opt/AuCore/static/nginx.conf.j2 /tmp/​

    vi /tmp/nginx.conf.j2 â€‹

    Change proxy_buffer_size value from 8k to 16k, so it must be:​
    proxy_buffer_size 16k;​

    Add a couple of new lines below:​
    proxy_busy_buffers_size 24k;​
    proxy_buffers 64 4k;​

    docker cp /tmp/nginx.conf.j2 aaf_aucore_1:/opt/AuCore/static/​

    systemctl restart aauth​

     

    The proposed values may not be enough if a user is a member of about 100 groups. We are currently working to estimate the optimal values.

Children
  • 0 in reply to 

    docker cp aaf_aucore_1:/opt/AuCore/static/nginx.conf.j2 /tmp/​  ==> this returns a file without name in the tmp directory.

    docker cp aaf_aucore_1:/opt/AuCore/static/nginx.conf.j2 /tmp/​nginx.conf.j2 ==> this returns a file with the correct name in the tmp directory.

    But when I do a vi on that file it still edits a 'new' empty file. Though the filesize is 11145 bytes.

    Did I miss something?