You are looking at the documentation of a prior release. To read the documentation of the latest release, please
visit here.
Troubleshooting "permission denied"
issue
Sometimes the backup or restore fails due to permission issues. This can happen for various reasons. In this guide, we are going to explain the known scenarios when this issue can arise and what you can do to solve it.
Identifying the issue
If you describe the respective BackupSession
/ RestoreSession
or view the log from the respective backup/restore sidecar/job, you should see a message pointing to the permission denied
error.
Possible reasons
The issue can happen during both backup and restore. Here, are a few possible scenarios when you can face the issue.
During Backup
You may see the permission issue during backup in the following cases.
Using Local Backend
If you are using local volumes such as NFS
, hostPath
, PVC
etc. as your backend, you may face this issue.
Using InterimVolume during backup
If you are using an addon that needs interimVolume
for storing the data temporarily during backup (i.e. Elasticsearch addon), you may face this issue.
During Restore
You may see the permission issue during the restore process in the following scenarios.
Backup was taken as a particular user
By default, Stash runs the backup as user nobody
. However, you may need to run the backup as a particular (i.e. root
user) user in various scenarios. In this case, if the user id of the restore process does not match with the user id that was used during backup, the restore process will fail to read data from the backend repository.
Using InterimVolume during restore
If you are using an addon that needs interimVolume
for storing the data temporarily during restore (i.e. Elasticsearch addon), you may face this issue.
Solutions
Here, are a few actions you can take to solve the issue in the scenarios mentioned above.
For local volume as backend
If you are facing the issue while using local volume as a backend, you can take any of the following actions to solve the issue.
Run the backup/restore as root
user
You can run the backup process as root
by adding runtimeSettings.container.securityContext
in the BackupConfiguration
or RestoreSession
spec.
Here, is an example of running backup as root
user:
apiVersion: stash.appscode.com/v1beta1
kind: BackupConfiguration
metadata:
name: ss-backup
namespace: demo
spec:
repository:
name: local-repo
schedule: "*/3 * * * *"
target:
ref:
apiVersion: apps/v1
kind: StatefulSet
name: stash-demo
volumeMounts:
- name: data-volume
mountPath: /my/data
paths:
- /my/data
runtimeSettings:
container:
securityContext:
runAsUser: 0
runAsGroup: 0
retentionPolicy:
name: 'keep-last-5'
keepLast: 5
prune: true
Here, is an example of running restores as root
user:
apiVersion: stash.appscode.com/v1beta1
kind: RestoreSession
metadata:
name: sample-mongodb-restore
namespace: kubedb
spec:
repository:
name: local-repo-with-hostpath
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: restored-mongodb
runtimeSettings:
container:
securityContext:
runAsUser: 0
runAsGroup: 0
rules:
- snapshots: [latest]
Provide fsGroup
during backup/restore
If you don’t want to run the backup/restore as root
user, you can provide fsGroup
of Stash default user 65534
in runtimeSettings.pod.securityContext
section.
Here, is an example of setting fsGroup
:
apiVersion: stash.appscode.com/v1beta1
kind: BackupConfiguration
metadata:
name: sample-mongodb-backup
namespace: kubedb
spec:
schedule: "*/5 * * * *"
repository:
name: local-repo-with-pvc
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: sample-mongodb
runtimeSettings:
pod:
securityContext:
fsGroup: 65534
retentionPolicy:
name: keep-last-5
keepLast: 5
prune: true
If you are taking backup of workload (i.e. StatefulSet, Deployment, etc.) volumes, you have to provide the
fsGroup
in your workload spec instead ofBackupConfiguration
/RestoreSession
.
Give read, write permissions to all users
You can also use chmod
to give read, write permissions to all users for the directory you are using as backend.
For using InterimVolume
If you are facing the issue because of using interimVolume
in your backup/restore process, you can either run the backup/restore process as root
user or you can provide the storage access permission to Stash using fsGroup
.
Here, is an example of running backup as root
user:
apiVersion: stash.appscode.com/v1beta1
kind: BackupConfiguration
metadata:
name: sample-elasticsearch-backup
namespace: demo
spec:
schedule: "*/5 * * * *"
repository:
name: gcs-repo
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: sample-elasticsearch
interimVolumeTemplate:
metadata:
name: stash-tmp-backup-storage
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: "standard"
resources:
requests:
storage: 1Gi
runtimeSettings:
pod:
securityContext:
runAsUser: 0
runAsGroup: 0
retentionPolicy:
name: keep-last-5
keepLast: 5
prune: true
Here, is an example of using fsGroup
:
apiVersion: stash.appscode.com/v1beta1
kind: BackupConfiguration
metadata:
name: sample-elasticsearch-backup
namespace: demo
spec:
schedule: "*/2 * * * *"
repository:
name: gcs-repo
target:
ref:
apiVersion: appcatalog.appscode.com/v1alpha1
kind: AppBinding
name: sample-elasticsearch
interimVolumeTemplate:
metadata:
name: stash-tmp-backup-storage
spec:
accessModes: [ "ReadWriteOnce" ]
storageClassName: "standard"
resources:
requests:
storage: 1Gi
runtimeSettings:
pod:
securityContext:
fsGroup: 65534
retentionPolicy:
name: keep-last-5
keepLast: 5
prune: true
For user id mismatch during restore
If your restore fails because it does not have the necessary permission to read backed up data from the repository, you have to run the restore process as the same user as the backup process or root
user using the runtimeSettings.container.securityContext
section.
Here, is an example of running restore as a particular user:
apiVersion: stash.appscode.com/v1beta1
kind: RestoreSession
metadata:
name: sample-statefulset-restore
namespace: demo
spec:
repository:
name: gcs-repo
target:
ref:
apiVersion: apps/v1
kind: StatefulSet
name: stash-recovered
volumeMounts:
- name: source-data
mountPath: /source/data
rules:
- paths:
- /source/data
runtimeSettings:
container:
securityContext:
runAsUser: 2000
runAsGroup: 2000