Previous Topic: CA-SD E15112Next Topic: CA-SD E15300


CA-SD E15234

Error creating file: file (rc = return code)

Reason:

The install and various other scripts generate this error. When creating new files, the UNIX/Linux command touch is used to create the file. Sometimes, redirection is used to create the new file as shown following:

Echo "abcd" > file 2>/dev/null

However, in this case, the file file was not created and an error occurred.

Action:

file should show the name of the file being created and its full path. Examine the full path to see if the file exists. Ensure that the directory containing the file is fully accessible (read, write, and execute permissions) to the user executing the script. If a file with the same name as the file being created already exists, delete the old file manually, using the UNIX/Linux command following:

rm -f filename 

Then rerun the script.

If the problem persists, contact Technical Support.