1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Ubuntuにリモートデスクトップで接続したいがpassword failedと言われる

Last updated at Posted at 2019-01-11

とてもマイナーなエラーだったが解決方法をみつけるのに時間がかかったので、解決方法を共有する

現象

  • AWSでUbuntuを使用しておりGUI環境も整備していた
  • ある日突然リモートデスクトップでの接続ができなくなった(Window remote desktop, Ubuntu Remmina)
  • 正しいパスワードを入れているがpassword failedと言われる
  • sshからは接続することができる
  • Web上で見つけた解決方法[https://www.raspberrypi.org/forums/viewtopic.php?t=31814] sudo service xrdp restartしても解決しなかった
    image.png

環境

  • AWS Ubuntu 16.04 LTS
  • Windows10 remote desktopまたはUbuntu 18 Remminaから接続

解決方法

  • xrdpのversionを上げることにより解決した
  • このサイト[https://netdevops.me/2017/installing-xrdp-0.9.1-on-ubuntu-16.04-xenial/] を参考にxrdpを0.6から0.9にアップグレ
    ードした
  1. xrdpのバージョン確認
xrdp -v

image.png
0.6となっている

  1. xrdpのアップグレード
sudo add-apt-repository ppa:hermlnx/xrdp
sudo apt-get update
sudo apt-get install xrdp
sudo service xrdp restart
  1. 再びxrdpバージョン確認
xrdp -v

image.png

0.9に更新された

これによりリモートデスクトップ接続が再びできるようになった。どうやら何かのアップデートによりxrdpの古いバージョンでは接続できなくなってしまったみたい。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?