I am trying to process files that are located on a different Linux server than Mirth, but are accessible through an NFS share.
I am sharing the files out from server MERKEL as such:
# cat /etc/exports
/nfs-share larynx(rw,sync)
I am mounting it on server LARYNX as such:
# cat /etc/fstab
merkel:/nfs-share /mnt/merkel nfs rsize=8192,wsize=8192,timeo=14,intr
I can access the files from the command line as root and a general user. I can move them, copy them, delete them, etc.
Here is the directory it is looking for files:
[[email protected] ~]$ ls -lt /mnt/merkel
total 12
-rwxrwxrwx 1 devuser devuser 4873 Jun 5 15:38 test.hl7
When I setup a channel to look at the NFS share for *.hl7 and move them after processing (as well as delete) to a local directory on the Mirth server (Larynx), the channel just repetitively processes the file without moving. So it keeps inserting the data from the files to the database, creates PDF files of the data, etc. Over and over until the channel is disabled.
Any thoughts as to why it isn't moving the file?
Thanks!
I am sharing the files out from server MERKEL as such:
# cat /etc/exports
/nfs-share larynx(rw,sync)
I am mounting it on server LARYNX as such:
# cat /etc/fstab
merkel:/nfs-share /mnt/merkel nfs rsize=8192,wsize=8192,timeo=14,intr
I can access the files from the command line as root and a general user. I can move them, copy them, delete them, etc.
Here is the directory it is looking for files:
[[email protected] ~]$ ls -lt /mnt/merkel
total 12
-rwxrwxrwx 1 devuser devuser 4873 Jun 5 15:38 test.hl7
When I setup a channel to look at the NFS share for *.hl7 and move them after processing (as well as delete) to a local directory on the Mirth server (Larynx), the channel just repetitively processes the file without moving. So it keeps inserting the data from the files to the database, creates PDF files of the data, etc. Over and over until the channel is disabled.
Any thoughts as to why it isn't moving the file?
Thanks!
Comment