Questions tagged [session]
274 questions
1
vote
1 answer
How to Handle Long TCP Sessions deployment in ZDD?
I have an application that forward TCP connection to another App. Currently I am trying to make this application Zero Download Deployment, so I can deploy new version at any time but there is a problem I don't have not found a solution in how to…

Penguin_HuHu
- 11
- 1
1
vote
0 answers
PhP Session Destruction not as eXpected
I have added this code to the top of my page and it is executed when a user login.
My intention is to increase the session life…

boonu
- 111
- 3
1
vote
1 answer
Server 2016 Session time limits for specific users
I am aware you can set session time limits for all idle/disconnected users on Server 2012/2016 etc, however I was wondering if there is a way to end disconnected/idle session only for some users and not all? Reason being, we'd love to have the…

Brett
- 11
- 1
1
vote
0 answers
Should TLS separate the Finished messages?
I'm a bit stumped by what I'm seeing in wireshark. I am attempting a TLS session resume from a client 10.66.128.10 to server 10.26.0.196, and am seeing an unexpected event - the client is sending the Change Cipher Spec and Encrypted Handshake…

Code Wiget
- 163
- 1
- 5
1
vote
1 answer
IIS7 ASP.NET Session Timeout
I have a few problems with sessions on my IIS7 and ASP.NET. Even if the session is set to 30 minutes in the IIS Manager on the site, it runs out in less than 5 minutes if I do not click around on the website (administrations system which require…

janhartmann
- 131
- 1
- 8
1
vote
0 answers
How is session caching affected by the renewal of a ssl certificate?
I optimized my nginx session cache like this
# Optimize session cache
ssl_session_cache shared:SSL:40m;
ssl_session_timeout 4h;
In a few days my Let's Encrypt certificate will be renewed. Does this have any negative influence on my SSL…

Sr. Schneider
- 185
- 2
- 6
1
vote
1 answer
How to handle session id from expressjs behind a apache2.4 webserver
I have a apache 2.4.29 with TLS activated to handle static files. Then i have a proxy configured to pass dynamic content to a NodeJS 10.5.0 with:
ExpressJS 4.16.3
express-session 1.15.6
session-file-store 1.2.0
The site.conf in apache that…

Kaf
- 169
- 9
1
vote
1 answer
RD Session host accepting new connections despite being set to not
I have a couple of new servers I'm testing for a customer... We've brought them into the mix of 'Host Servers' for the Remote Desktop Services collection and we've set 'Allow new connections' to 'False' for both of the new servers.
Users have since…

John
- 541
- 4
- 17
- 34
1
vote
0 answers
RDSH logon is hanging at 'Please wait for remote desktop configuration'
RDSH logon is hanging at 'Please wait for remote desktop configuration'.
Can anybody tell me what it's actually doing at this stage?
It will proceed eventually but we're talking like 5-10 minutes of wait time.

John
- 541
- 4
- 17
- 34
1
vote
2 answers
Can't start sessions in chrooted nginx php-fpm environment in FreeBSD
I have a FreeBSD 11 machine running latest Nginx and PHP-FPM in chrooted mode.
Everything worked fine, until I added start_session(); to index.php.
This is when I received the following error:
Fatal error: Uncaught Exception: Cannot open source…

Alex G
- 207
- 1
- 2
- 14
1
vote
1 answer
Problems with session data permissions, multiple UIDs on multiple PHP-FPM pools
I run an nginx server with 40 identical webapps on 40 different ports in 40 different PHP-FPM pools. Each pool is run on a separate user.
My sessions.save_path in php.ini is /tmp/php_sessions. Let's say I first visit http://mywebsite.com:5007. I can…

Magnus
- 255
- 1
- 2
- 8
1
vote
0 answers
Tomcat: Session persistence not working with MySQL
I am working on adding session persistence in Tomcat with MySQL, but unfortunately it is not working. Nothing in database. I am trying to save session information so that users are logged in even after tomcat restart. This is the configuration I…

We are Borg
- 177
- 1
- 18
1
vote
1 answer
SSH sessions doesn't terminate correctly
I'm having issues with some ssh sessions that doesn't seem to terminate properly. To make things even worse, the customer whos sessions is getting "stuck", well, they seem to have some kind of implemented solution and doesn't have the knowledge to…

eae
- 11
- 1
1
vote
0 answers
How to save mutual authentication HTTPS SSL/TLS Session Handshake from Nginx server
I have setup an Nginx installation in my server. I've set a restriction access to a resource only by client certification authentication. (Referring to RFC6101).
Now when a user get access with his certificate, his client performs a "TLS handshake"…

0bot
- 46
- 5
1
vote
1 answer
Centos/Fedora cipher suites
I created a self signed certificate on my Fedora CLI server using the openssl command
openssl req -x509 -sha256 -newkey rsa:2048 -nodes -keyout key.pem -out cert.pem -days 100
From my understanding, this is how TLS works:
Client sends cipher suite…

james b
- 11
- 1