-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Test Upload Can Not View File #3211
Comments
Please have some reusable code to reproduce the problem. |
I use Test Class @test when I download file after upload file, error is
Caused by: javax.crypto.AEADBadTagException: Tag mismatch! But I use seaweedfs UI upload file, download file,decrypt is success |
Is this resolved? @chrislusf |
Use the following,Upload files using java,cant not view file
nohup ./weed master -mdir=/data/seaweedfs/master -port=9333 -ip=10.166.210.13 -port.grpc=19333 >> /data/seaweedfs/master/master.log &
nohup ./weed volume -dir=/data/seaweedfs/volume -max=7 -mserver="10.166.210.13:9333" -ip=10.166.210.13 -port=9080 -port.grpc=19080 >> /data/seaweedfs/volume/volume.log &
nohup ./weed filer -port=8889 -encryptVolumeData -master=10.166.210.13:9333 -ip=10.166.210.13 >> /data/seaweedfs/filer/filer.log &
error is // check entire authentication tag for time-consistency
int mismatch = 0;
for (int i = 0; i < tagLenBytes; i++) {
mismatch |= tag[i] ^ sOut[i];
}
Thanks
The text was updated successfully, but these errors were encountered: