Opt/data looks encrypted

I have folders on my opt/data folder but looks as below , how do i make this readable

(cchq) ccc@monolith:/opt/data$ ls -al
total 153540
drwxr-xr-x 12 root root 4096 Jun 12 16:50 .
drwxr-xr-x 11 root root 4096 May 4 2021 ..
drwx------ 7 couchdb couchdb 4096 Aug 20 2019 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyASyRV0pyeO00wegI80Px3E--
drwxrwxr-x 3 nobody nfs 157052928 Jun 11 18:28 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyBmjVVNCjJ1xCfZeW3N3BgU--
drwx------ 3 postgres postgres 4096 Aug 20 2019 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXybMSMvxiDERA1EOkEbL.z8---
drwxr-xr-x 3 kafka kafka 4096 Aug 20 2019 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyq0FdMDUTljPweuOJjDrxqk--
drwxr-xr-x 2 redis root 4096 Jun 12 17:32 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyqsZ61ZqSdmQD9bth57bw0U--
drwxr-xr-x 3 cchq cchq 4096 Mar 8 2021 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXysKvj04Yzyyvl5.eB31fgi---
-rwxrwx--- 1 root root 12288 Aug 20 2019 ECRYPTFS_FNEK_ENCRYPTED.FWaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyWAWBj.GhwEBPzQA2fl4E8U--
drwxr-xr-x 4 elasticsearch elasticsearch 4096 Aug 20 2019 ECRYPTFS_FNEK_ENCRYPTED.FXaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXy91H.4feDbvpcCV1XV6WCXrTxUb.BbWSmRzAxsAtlAF6-
drwxr-xr-x 4 root root 4096 May 4 2021 ECRYPTFS_FNEK_ENCRYPTED.FXaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyNdz5-uh12KIWeX55IrQbPMFZ1OQNb1RiqL0SExE6MWU-
drwxr-xr-x 4 elasticsearch elasticsearch 4096 May 4 2021 ECRYPTFS_FNEK_ENCRYPTED.FYaD.6g3DHes4UZ2TUqK6UGgZMHhFL.qUrXyDD.X-a2ZVXJm8mN1QZA2qcstAP4t12CgoOl7AgRaevc1CwId1h6bG.uKxDcj3LBu
drwxr-xr-x 2 cchq cchq 4096 Apr 30 2021 formplayer
(cchq) ccc@monolith:/opt/data$

Welcome to the CommCare Community, @kwirirai !

As you guessed, the directory is encrypted. That makes me suspect that the environment has been started/restarted, and the "after-reboot" command has not yet run.

These are the steps I follow after a reboot:

  1. Start the SSH agent:

    $ eval `ssh-agent`
    
  2. Add my SSH key to the SSH agent:

    $ ssh-add ~/.ssh/id_rsa
    
  3. Run the "after-reboot" command:

    $ cchq monolith after-reboot all
    

You can find more information about this in the documentation here: Managing The Deployment — CommCareHQ Deployment documentation

Does that successfully mount /opt/data unencrypted?