0

I am using FileMaker Server 19 in CentOS 7.8 and trying to mount a smb share for the backup of databases.

I have entered into fstab: "//172.30.x.x/CentOS /opt/FileMaker/FileMaker\040Server/Data/Backups cifs username=mylogin,password=mypassword, uid=989, gid=1004 0 0"

When I run "mount -a" I get the error "mount: /etc/fstab: parse error: ignore entry at line 13."

The above is line 13...

The cifs command runs fine in the command line so I know the details are correct.

Can anyone see any obvious errors?

Thanks in advance!

1
  • 1
    Remove the extra spaces. Commented Jan 21, 2021 at 17:11

1 Answer 1

0

If you copy/pasted it, then I see that uid and gid have a " " before them, yet all options should be concatenated (no spaces). BAD:

//172.30.x.x/CentOS /opt/FileMaker/FileMaker\040Server/Data/Backups cifs username=mylogin,password=mypassword, uid=989, gid=1004 0 0 

Good:

//172.30.x.x/CentOS /opt/FileMaker/FileMaker\040Server/Data/Backups cifs username=mylogin,password=mypassword,uid=989,gid=1004 0 0 
1
  • Thanks for the tip! Did not pick-up on this syntax rule. Commented Jan 22, 2021 at 2:30

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.