Hi,
thanks for the link about upgrading and all. Can't see any immediate solutions to my problem though. I did run the upgrade script; I also generated a fresh self-signed cert - just in case. Not sure how the PEPs would play into this (I haven't touch those at all, just running iRODS as a kind of metadata-enabled backup space).
What I still don't get is why the server reports as not using SSL/TSL. There is no error I can see in the logs. I started the server in test mode, just in case - and all I get is this:
```
cat /var/lib/irods/log/test_mode_output.log
{"log_category":"server","log_level":"info","log_message":"main: Initializing shared memory for main server process.","server_host":"localhost","server_pid":2867,"server_timestamp":"2026-01-22T06:42:58.557Z","server_type":"server","server_zone":"lsh"}
{"log_category":"server","log_level":"info","log_message":"main: Initializing access time queue for main server process.","server_host":"localhost","server_pid":2867,"server_timestamp":"2026-01-22T06:42:58.566Z","server_type":"server","server_zone":"lsh"}
{"log_category":"server","log_level":"info","log_message":"main: Launching Agent Factory.","server_host":"localhost","server_pid":2867,"server_timestamp":"2026-01-22T06:42:58.570Z","server_type":"server","server_zone":"lsh"}
{"log_category":"server","log_level":"info","log_message":"launch_agent_factory: Agent Factory PID = [2871].","server_host":"localhost","server_pid":2867,"server_timestamp":"2026-01-22T06:42:58.570Z","server_type":"server","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing loggers for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.584Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing signal handlers for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.584Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing client allowlist for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.584Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing shared memory for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.584Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing access time queue for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.585Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"main: Initializing zone information for agent factory.","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.585Z","server_type":"agent_factory","server_zone":"lsh"}
{"log_category":"agent_factory","log_level":"info","log_message":"initServerMain: Server Release version rods5.0.2 - API Version d is up","server_host":"localhost","server_pid":2871,"server_timestamp":"2026-01-22T06:42:58.601Z","server_type":"agent_factory","server_zone":"lsh"}
```
And then, when trying to query the server from the client (or the server itself with a user account):
```
imiscsvrinfo
RCAT_ENABLED
relVersion=rods5.0.2
apiVersion=d
rodsZone=lsh
SSL/TLS Info:
enabled: false
```
No errors about invalid SSL certs or whatever, so .. not sure how to debug this.
Just in case, the relevant server config section:
```
"client_server_policy": "CS_NEG_DONT_CARE",
"tls_client": {
"ca_certificate_file": "/etc/irods/ssl/irods.cert",
"verify_server": "cert"
},
"tls_server": {
"certificate_chain_file": "/etc/irods/ssl/chain.pem",
"certificate_key_file": "/etc/irods/ssl/irods.key",
"dh_params_file": "/etc/irods/ssl/dhparams.pem"
},
```
and the client config:
```
{
"irods_authentication_scheme": "pam_password",
"irods_client_server_negotiation": "request_server_negotiation",
"irods_client_server_policy": "CS_NEG_DONT_CARE",
"irods_encryption_algorithm": "AES-256-CBC",
"irods_encryption_key_size": 32,
"irods_encryption_num_hash_rounds": 16,
"irods_encryption_salt_size": 8,
"irods_host": "lab-2-ngs-007.local",
"irods_port": 1247,
"irods_ssl_ca_certificate_file": "/etc/irods/irods.crt",
"irods_ssl_verify_server": "cert",
"irods_user_name": "SOMEUSER",
"irods_zone_name": "lsh"
}
```
Where the irods.crt file is the same on the host and the client (verified with md5sum).