New Question

Revision history [back]

click to hide/show revision 1
initial version

Hi,

What happens if you manually create that folder, i.e. by issuing a mkdir command?

The following isn't necessarily an issue, it just means that a client attempted to open a file that does not exist.

[Time Stamp] ... 1b 2 ceph-dokan: WinCephCreateFile /path/to/file.uasset: Not found.

The following arguments can be passed to ceph-dokan to enable verbose Dokany logging. Note that the Dokany lib only uses console logging.

ceph-dokan.exe -l x --debug --dokan-stderr

Ceph can also be configured to use stderr logging by specifying the following in your ceph.conf file:

[global]
    log to stderr = true
    debug client = 2

In most cases, this should be enough to pinpoint issues that may arise from invalid paths, wrong or unsupported create flags, etc. If really needed, you can bump the client (cephfs) log level to 20. The log might become extremely verbose, in which case you might want to use a log file:

[global]
    log to stderr = false
    debug client = 20

[client]
    log file = C:/ProgramData/ceph/out/$name.$pid.log

Regards,

Lucian

Hi,

What happens if you manually create that folder, i.e. by issuing a mkdir command?

The following isn't necessarily an issue, it just means that a client attempted to open a file that does not exist.

[Time Stamp] ... 1b 2 ceph-dokan: WinCephCreateFile /path/to/file.uasset: Not found.

The following arguments can be passed to ceph-dokan to enable verbose Dokany logging. Note that the Dokany lib only uses console logging.

ceph-dokan.exe -l x --debug --dokan-stderr

Ceph can also be configured to use stderr logging by specifying the following in your ceph.conf file:

[global]
    log to stderr = true
    debug client = 2

In most cases, this should be enough to pinpoint issues that may arise from invalid paths, denied permissions, wrong or unsupported create flags, etc. If really needed, you can bump the client (cephfs) log level to 20. The log might become extremely verbose, in which case you might want to use a log file:

[global]
    log to stderr = false
    debug client = 20

[client]
    log file = C:/ProgramData/ceph/out/$name.$pid.log

Regards,

Lucian