The answer is in the error message. One of the data files is missing, or the permissions don't allow oracle to read/write it.
You need to restore the missing data file from backup. If you don't have a backup you are in trouble, this is a very old version of Oracle and you won't get very good support.
I think you can see the data files by running the following query from svrmgrl (connect internal)
SELECT FILE_NAME, STATUS
FROM DBA_DATA_FILES ;
Check each one is there and with correct permissions.
-- Graham
Computers make it easier to do a lot of things, but most of the things they make it easier to do don't need to be done.