scp -rを使用してファイルを転送しようとすると、権限が拒否されました。

scp -rを使用してファイルを転送しようとすると、権限が拒否されました。

このコードを実行するとエラーが発生します。

 scp  -r ./build/* rose@IP_address:/var/www/mywebsite.com/html
Permission denied(publickey)
lost connection

最初は機能しますが、create-react-app Webサイトにいくつかの変更を加えようとすると機能しません。

これは断片です

scp -vvv  -r ./build/* rose@IP_address:/var/www/mywebsite.com/html
OpenSSH_7.6p1 Ubuntu-4ubuntu0.3, OpenSSL 1.0.2n  7 Dec 2017
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 19: Applying options for *
debug2: resolving "IP_address" port 22
debug2: ssh_connect_direct: needpriv 0
debug1: Connecting to IP_address [IP_address] port 22.
debug1: Connection established.
debug1: identity file /home/rose/.ssh/id_rsa type 0
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /home/rose/.ssh/id_ed25519 type -1

助けてください。

ベストアンサー1

だから私はこの問題に対する解決策を見つけました。私は行きました

sudo nano /etc/ssh/sshd_config

そしてPasswordAuthentication noに変わったPasswordAuthentication yes

PermitRootLogin noそしてPermitRootLogin yes

それから走ってsudo systemctl restart sshd走ってssh user@IP_address成功しました。

おすすめ記事