Skip to content

Commit 16c229e

Browse files
authored
advice that is portable?
1 parent 90f0d9e commit 16c229e

File tree

1 file changed

+4
-3
lines changed
  • kubernetes/samples/scripts/create-weblogic-domain-pv-pvc

1 file changed

+4
-3
lines changed

kubernetes/samples/scripts/create-weblogic-domain-pv-pvc/README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -217,10 +217,11 @@ Events: <none>
217217
## Troubleshooting
218218

219219
1. Message: "[ERROR] The weblogicDomainStoragePath parameter in kubernetes/samples/scripts/create-weblogic-domain-pv-pvc/create-pv-pvc-inputs.yaml is missing, null or empty"
220-
Edit the file and set the value of the field. This value must be a directory that is writable for the uid==1000 and gid==1000.
220+
Edit the file and set the value of the field. This value must be a directory that is world writable. After you run the through the sample the first time, you can tighten up the ownership and permissions on the named directory.
221221
Take the following steps to resolve the error:
222222
* become the root user
223-
* mkdir -e $value-of-weblogicDomainStoragePath
223+
* ls -nd $value-of-weblogicDomainStoragePath
224+
* Note the values of the third and fourth field of the output
225+
* chown $third-field:$fourth-field $value-of-weblogicDomainStoragePath
224226
* chmod 755 $value-of-weblogicDomainStoragePath
225-
* chown 1000:1000 $value-of-weblogicDomainStoragePath
226227
* return to your normal user id

0 commit comments

Comments
 (0)