Thông thường thì sẽ dùng cách này để đêm source code lên OCI, có thể dùng cho Instance Compute hoặc các service khác. Mình nghĩ rằng cách thức chuyển này sẽ giúp bạn trong vài trường hợp nào đó.
Normally, this method will be used to upload source code to OCI, which can be used for Instance Compute or other services. I think this transfer method will help you in some cases.
INSTALL
yum install s3fs-fuse (enable vi oracle-epel-ol7.repo)
SET UP
vi ${HOME}/.passwd-s3fs
chmod 600 ${HOME}/.passwd-s3fs
90ff9812a882c04fa9dc:EM7Ds+rW=
ACCESS_KEY_ID:KEYSECRET ( Lấy trong profile của User –> Secret key)
Namespace lấy ở Tenancy Detail
CREATE FOLDER
mkdir /ebs1
mkdir /ebs2
RUN COMMAND MOUNT
s3fs [bucket] [destination directory] -o endpoint=[region] -o passwd_file=${HOME}/.passwd-s3fs -o url=https://[namespace].compat.objectstorage.[region].oraclecloud.com/ -onomultipart -o use_path_request_style
EX: s3fs test /ebs1 -o endpoint=ayyyyyyy -o passwd_file=${HOME}/.passwd-s3fs -o url=https://tttttttt.compat.objectstorage.yyyyyy.oraclecloud.com/ -onomultipart -o use_path_request_style.