{"id":1288,"date":"2019-01-07T20:31:36","date_gmt":"2019-01-07T20:31:36","guid":{"rendered":"https:\/\/draculaservers.com\/tutorials\/?p=1288"},"modified":"2023-07-06T16:55:36","modified_gmt":"2023-07-06T16:55:36","slug":"install-xrdp-centos","status":"publish","type":"post","link":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/","title":{"rendered":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP"},"content":{"rendered":"<p>In this tutorial we&#8217;ll cover the steps to install xRDP on your remote CentOS 7 machine, and how to connect to it via Remote Desktop Connection. We&#8217;ll also show you how to install and connect to different Desktop Environments on your remote CentOS 7 machine.<\/p>\n<p>xRDP is a free and open source Remote Desktop Protocol Server that allows other operating systems, other than Windows, to provide a fully functional remote desktop experience.<\/p>\n<p>xRDP is fully compatible with <strong>rdesktop<\/strong>, <strong>FreeRDP<\/strong> and even <strong>Microsoft&#8217;s Remote Desktop Client.<\/strong><\/p>\n\n<div class=\"container custom-content-block\" style=\"background-color: #282a36; border-radius: 3px; padding: 20px 25px 35px 25px !important; margin-top: 60px; margin-bottom: 60px;\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #74fa7a; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Get a High RAM VPS at Entry-level Pricing<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Starting with 2GB RAM at $6.99\/month<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #60709f; font-size: 1em; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Take your pick from our KVM VPS that offer a generous amount of RAM at an affordable price. We've got 5 plans for you to choose from, our cheapest featuring 2GB RAM at $6.99\/mo.<\/p>\r\n\r\n<div style=\"font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-size: 14px; color: #74fa7a;\"><span style=\"color: #ffffff;\">[Main Features]<\/span>\r\n- SSD Drives\r\n- KVM Virtualization\r\n- 1Gbps Shared Uplink\r\n- Location: Chicago, IL<\/div>\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Pick one of our KVM plans<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\"><a class=\"btn btn-primary btn-lg\" style=\"background-color: #58689e; color: #ffffff; box-shadow: 0 2px 2px 0 #3F51B5, 0 3px 1px -2px #3F51B5, 0 1px 5px 0 #3F51B5; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-weight: bold !important;\" role=\"button\" href=\"https:\/\/draculaservers.com\/kvm.php#choose-plan\" target=\"_blank\" rel=\"noopener\" aria-pressed=\"true\">Get started now<\/a><\/div>\r\n<\/div>\r\n<\/div>\n<h2 id=\"prerequisites\">Prerequisites<\/h2>\n<ul>\n<li>Although not absolutely required, we recommend acting as a <code>non-root sudo user<\/code> when proceeding to make any major changes to your system.<\/li>\n<li>A machine running CentOS 7 with a minimum of 2GB RAM.<\/li>\n<\/ul>\n<blockquote class=\"note-blue\"><p><small><strong>Installing xRDP on CentOS 8:<\/strong> For an updated version of this tutorial for CentOS 8, along with installing additional desktop environments and configuring the remote desktop connection for speed, we recommend this article <a href=\"https:\/\/bytexd.com\/xrdp-centos\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to Connect to a CentOS 8 Server via Remote Desktop Connection using xRDP<\/a><\/small><\/p><\/blockquote>\n<h2 id=\"step-1-install-xrdp-on-centos-7\">Step 1 \u2013 Install xRDP on CentOS 7<\/h2>\n<p>First, update your package index:<\/p>\n<pre><code>sudo yum -y update<\/code><\/pre>\n<pre><code>$ sudo yum install -y epel-release\r\n$ sudo yum install -y xrdp\r\n$ sudo systemctl enable xrdp\r\n$ sudo systemctl start xrdp<\/code><\/pre>\n<p>If you&#8217;re using FirewallD, then open port <code>3389\/tcp<\/code> for RDP:<\/p>\n<pre><code>$ sudo firewall-cmd --add-port=3389\/tcp --permanent\r\n$ sudo firewall-cmd --reload<\/code><\/pre>\n<h2 id=\"step-2-install-your-preferred-desktop-environment\">Step 2 \u2013 Install Your Preferred Desktop Environment<\/h2>\n<p>Now we can install the desktop environment we&#8217;ll be using. In this guide we&#8217;ll try out XFCE, MATE, and GNOME.<\/p>\n<p>If you&#8217;re looking for a lightweight and resource friendly solution, install XFCE.<\/p>\n<blockquote class=\"note\"><p><small><strong>NOTE: <\/strong> If you can&#8217;t connect via Remote Desktop Connection after you&#8217;ve installed the desktop environment, then open port <code>3389\/tcp<\/code> using the <code>firewall-cmd<\/code> command mentioned above.<\/small><\/p><\/blockquote>\n<h3 id=\"1-install-xfce-desktop-environment\">1. Install XFCE Desktop Environment<\/h3>\n<p>XFCE is one of the most lightweight desktop environments. It&#8217;s fast, low on system resources, while still visually appealing. Additionally, it has a very active community, so there are many customization options available.<\/p>\n<p>To install XFCE, run the following commands:<\/p>\n<pre><code>$ sudo yum install -y epel-release\r\n$ sudo yum groupinstall -y \"Xfce\"\r\n$ sudo reboot<\/code><\/pre>\n<p>Next, create the <code>.Xclients<\/code> file in the directory of the user you&#8217;re connecting with:<\/p>\n<pre><code>$ echo \"xfce4-session\" &gt; ~\/.Xclients\r\n$ chmod a+x ~\/.Xclients<\/code><\/pre>\n<p>Now you can connect to the server using Remote Desktop Connection.<\/p>\n<p>Here is what XFCE looks like:<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" class=\"aligncenter size-full wp-image-1292\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce.png\" alt=\"XFCE\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce.png 1920w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce-300x169.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce-1024x576.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce-768x432.png 768w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_xfce-1536x864.png 1536w\" sizes=\"auto, (max-width: 1920px) 100vw, 1920px\" \/><\/a><\/p>\n<p><strong>Uninstalling XFCE<\/strong><\/p>\n<p>To uninstall XFCE from your CentOS 7 machine, run the following commands:<\/p>\n<pre><code>$ sudo yum groupremove -y \"Xfce\"\r\n$ sudo yum remove -y libxfce4*<\/code><\/pre>\n<h3 id=\"2-install-mate-desktop-environment\">2. Install MATE Desktop Environment<\/h3>\n<p>To install MATE, run the following commands:<\/p>\n<pre><code>$ sudo yum install -y epel-release\r\n$ sudo yum groupinstall -y \"MATE Desktop\"\r\n$ sudo reboot<\/code><\/pre>\n<p>Next, create the <code>.Xclients<\/code> file in the directory of the user you&#8217;re connecting with:<\/p>\n<pre><code>$ echo \"mate-session\" &gt; ~\/.Xclients\r\n$ chmod a+x ~\/.Xclients<\/code><\/pre>\n<p>Now you can connect to the server using Remote Desktop Connection.<\/p>\n<p>Here is what MATE looks like:<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" class=\"aligncenter size-full wp-image-1293\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate.jpg\" alt=\"MATE\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate.jpg 1920w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate-300x169.jpg 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate-1024x576.jpg 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate-768x432.jpg 768w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_mate-1536x864.jpg 1536w\" sizes=\"auto, (max-width: 1920px) 100vw, 1920px\" \/><\/a><\/p>\n<p><strong>Uninstalling MATE<\/strong><\/p>\n<p>To uninstall MATE from your CentOS 7 machine, run the following commands:<\/p>\n<pre><code>$ sudo yum groupremove -y \"MATE Desktop\"\r\n$ sudo yum autoremove -y<\/code><\/pre>\n<h3 id=\"3-install-gnome-desktop-evironment\">3. Install GNOME Desktop Evironment<\/h3>\n<p>We&#8217;ll now install GNOME 3.<\/p>\n<p>To do this, we&#8217;ll just have to install the <strong>GNOME Desktop<\/strong> package group, which will install all the packages required for the GUI installation.<\/p>\n<pre><code>$ sudo yum groupinstall \"GNOME DESKTOP\" -y<\/code><\/pre>\n<p>This may take a while. There were ~1000 packages installed on a minimal CentOS 7 installation.<\/p>\n<p><strong>Start the GUI<\/strong><\/p>\n<p>Although we installed the <strong>GNOME Desktop<\/strong> package group, the GUI will not be loaded by default on reboot.<\/p>\n<p>We can check this by running:<\/p>\n<pre><code>$ systemctl get-default<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code>multi-user.target<\/code><\/pre>\n<p>If our default target is <code>multi-user.target<\/code>, it means that the GUI will not be loaded. What we want is to set the default target to <code>graphical.target<\/code>.<\/p>\n<p>To do this, run the following commands:<\/p>\n<pre><code>$ sudo systemctl set-default graphical.target<\/code><\/pre>\n<p>Output:<\/p>\n<pre><code>Removed symlink \/etc\/systemd\/system\/default.target.\r\nCreated symlink from \/etc\/systemd\/system\/default.target to \/usr\/lib\/systemd\/system\/graphical.target.<\/code><\/pre>\n<p>After which, run the following command to change to the GUI immediately:<\/p>\n<pre><code>$ sudo systemctl isolate graphical.target<\/code><\/pre>\n<p>That&#8217;s it. You can now connect via xRDP to your CentOS 7 machine using GNOME.<\/p>\n<p>Here is what GNOME 3 looks like, the first time you connect after installing. Just follow the initial configuration steps to finish setting up.<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome.jpg\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" class=\"aligncenter size-full wp-image-1291\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome.jpg\" alt=\"GNOME 3\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome.jpg 1920w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome-300x169.jpg 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome-1024x576.jpg 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome-768x432.jpg 768w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/remote_desktop_connection_xrdp_gnome-1536x864.jpg 1536w\" sizes=\"auto, (max-width: 1920px) 100vw, 1920px\" \/><\/a><\/p>\n<p><strong>Uninstalling GNOME<\/strong><\/p>\n<p>To uninstall GNOME from your CentOS 7 machine, run the following commands:<\/p>\n<pre><code>$ sudo yum groupremove -y \"GNOME Desktop\"\r\n$ sudo yum autoremove -y<\/code><\/pre>\n<h2 id=\"step-3-connect-to-your-machine-using-remote-desktop-connection\">Step 3 \u2013 Connect to Your Machine Using Remote Desktop Connection<\/h2>\n<p>With xRDP and your desktop environment installed, you can now connect from your local machine to the remote machine.<\/p>\n<p>How you do this depends on your operating system.<\/p>\n<h3 id=\"connect-from-windows\">Connect from Windows<\/h3>\n<p>To connect to your server from Microsoft Windows, just search and launch the Remote Desktop Connection application and input your hostname or IP:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-595\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/10\/connect_ubuntu_remote_desktop_xrdp_1.png\" alt=\"input_hostname_or_ip_in_remote_desktop_connection\" width=\"550\" height=\"317\" \/><\/p>\n<p>If this is your first time connecting, then you\u2019ll receive some security warnings. Assuming this is your server and it is secure then just go ahead and confirm them.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-596\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/10\/connect_ubuntu_remote_desktop_xrdp_2.png\" alt=\"confirm_security_warning\" width=\"550\" height=\"317\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/10\/connect_ubuntu_remote_desktop_xrdp_2.png 550w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/10\/connect_ubuntu_remote_desktop_xrdp_2-300x173.png 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-597\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2018\/10\/connect_ubuntu_remote_desktop_xrdp_3.png\" alt=\"confirm_security_warning\" width=\"550\" height=\"317\" \/><\/p>\n<h3 id=\"connect-from-linux\">Connect from Linux<\/h3>\n<p>To connect from a Linux machine, a great option for using remote desktop connection is <a href=\"https:\/\/remmina.org\" target=\"_blank\" rel=\"noopener noreferrer\">Remmina<\/a>. Remmina is a wonderful free and open-source remote desktop client that supports Remote Desktop Protocol, VNC, NX, XDMCP, SPICE and SSH protocols.<\/p>\n<p><a href=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1014\" class=\"aligncenter size-full wp-image-1301\" src=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection.png\" alt=\"linux_to_linux_remote_desktop_connection\" srcset=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection.png 1920w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection-300x158.png 300w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection-1024x541.png 1024w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection-768x406.png 768w, https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/linux_to_linux_remote_desktop_connection-1536x811.png 1536w\" sizes=\"auto, (max-width: 1920px) 100vw, 1920px\" \/><\/a><\/p>\n<p>To use Remmina to connect from Linux to your remote machine, just run Remmina after installing it, click the <code>+<\/code> in the top left corner and fill in your remote machine&#8217;s <code>IP\/Hostname<\/code>, <code>Username<\/code> and <code>Password<\/code>.<\/p>\n<p>If you&#8217;re running Debian\/Ubuntu\/CentOS\/Fedora locally, you can install Remmina using the following commands:<\/p>\n<p><strong>Debian\/Ubuntu<\/strong><\/p>\n<pre><code>$ sudo apt-get install remmina remmina-plugin-*<\/code><\/pre>\n<p><strong>CentOS\/RHEL<\/strong><\/p>\n<pre><code>$ yum install remmina remmina-plugins-*<\/code><\/pre>\n<p><strong>Fedora 22<\/strong><\/p>\n<pre><code>$ sudo dnf copr enable hubbitus\/remmina-next\r\n$ sudo dnf upgrade --refresh 'remmina*' 'freerdp*'<\/code><\/pre>\n<p>You&#8217;ll notice we are also installing <code>remmina-plugins-*<\/code> because our main interest is installing the Remmina RDP plugin, as it may not be installed by default.<\/p>\n<p>You can find more detailed installation instructions, and instructions for other distros on their website, here <a href=\"https:\/\/remmina.org\/how-to-install-remmina\/\" target=\"_blank\" rel=\"noopener noreferrer\">How to install Remmina &#8211; Remmina<\/a>.<\/p>\n<h3 id=\"connect-from-osx\">Connect from OSX<\/h3>\n<p>To connect from your Mac, you&#8217;ll first have to download the <a href=\"https:\/\/itunes.apple.com\/us\/app\/microsoft-remote-desktop-10\/id1295203466\" target=\"_blank\" rel=\"noopener noreferrer\">Microsoft Remote Desktop App from the App Store<\/a><\/p>\n<p>After launching the app for the first time, you&#8217;ll first want to create a new connection. To do this click on the <code>+<\/code> in the top left corner of the app window.<\/p>\n<p>The essential information you need here is for <strong>PC Name<\/strong>, <strong>User name<\/strong> and <strong>Password<\/strong>.<\/p>\n<p>Just fill in the info for the 3 mentioned fields as follows:<\/p>\n<p><strong>PC Name &#8211; <\/strong>The IP or Host name of your remote machine. Most likely you&#8217;ll want to use your IP.<br \/>\n<strong>User name &#8211; <\/strong>The username you used when installing xRDP and the desktop environment on your remote machine. Either <code>root<\/code> or your <code>sudo user<\/code>.<br \/>\n<strong>Password &#8211; <\/strong>Your CentOS user&#8217;s login password.<\/p>\n<p>After which the connection should be saved and you should be able to start the connection to the remote machine.<\/p>\n<p>For additional info and support, you can read the instructions for Remote Desktop on Mac on <a href=\"https:\/\/docs.microsoft.com\/en-us\/windows-server\/remote\/remote-desktop-services\/clients\/remote-desktop-mac\" target=\"_blank\" rel=\"noopener noreferrer\">Microsoft&#8217;s Website<\/a>.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>Well done. You&#8217;ve hopefully learned how to install xRDP on a CentOS 7 machine and use 3 different desktop environments over remote desktop connection.<\/p>\n<p>If you&#8217;ve encountered any issues when following this tutorial, please feel free to let us know in the comments or by contacting us.<\/p>\n<div class=\"container custom-content-block\" style=\"background-color: #282a36; border-radius: 3px; padding: 20px 25px 35px 25px !important; margin-top: 60px; margin-bottom: 60px;\">\r\n<div class=\"row\">\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #74fa7a; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Need Help?<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Have a server from a different provider and need help? Hit us up!<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #60709f; font-size: 1em; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">We offer various services to assist you in achieving your business goal. Working in the industry, we've gained proficiency various areas related to hosting.\r\n<br \/>\r\n<div style=\"font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-size: 14px; color: #74fa7a;\">\r\n<span style=\"color: #ffffff; !important;\">[Proficiencies Include]<\/span><\/br>\r\n&nbsp;&nbsp;- RADIUS<br \/>\r\n&nbsp;&nbsp;- WHMCS<br \/>\r\n&nbsp;&nbsp;- LAMP Stack<br \/>\r\n&nbsp;&nbsp;- LEMP Stack<br \/>\r\n&nbsp;&nbsp;- VPN Protocols<br \/>\r\n&nbsp;&nbsp;- SMTP<br \/>\r\n&nbsp;&nbsp;- Remote Desktop Solutions<br \/>\r\n&nbsp;&nbsp;- Linux in general<br \/>\r\n<\/div>\r\n<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\">\r\n<p style=\"color: #ffffff; font-weight: bold !important; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important;\">Hire Us<\/p>\r\n\r\n<\/div>\r\n<div class=\"col-lg-12\"><a role=\"button\" aria-pressed=\"true\" class=\"btn btn-primary btn-lg\" style=\"background-color: #58689e; color: #ffffff; box-shadow: 0 2px 2px 0 #3F51B5, 0 3px 1px -2px #3F51B5, 0 1px 5px 0 #3F51B5; font-family: Droid Sans Mono,'DroidSansMonoRegular','Courier New',monospace !important; font-weight: bold !important;\" href=\"https:\/\/draculaservers.com\/members\/submitticket.php\" target=\"_blank\" rel=\"noopener\">HIT US UP<\/a><\/div>\r\n<\/div>\r\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial we&#8217;ll cover the steps to install xRDP on your remote CentOS 7 machine, and how to connect to it via Remote Desktop Connection. We&#8217;ll also show you how to install and connect to different Desktop Environments on your remote CentOS 7 machine. xRDP is a free and open source Remote Desktop Protocol [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1300,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[72,1],"tags":[10,29,73],"class_list":["post-1288","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-centos","category-getting-started","tag-centos","tag-rdp","tag-xrdp"],"blocksy_meta":{"styles_descriptor":{"styles":{"desktop":"","tablet":"","mobile":""},"google_fonts":[],"version":6}},"featured_image_urls_v2":{"full":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png",1024,512,false],"thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1-150x150.png",150,150,true],"medium":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1-300x150.png",300,150,true],"medium_large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1-768x384.png",768,384,true],"large":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png",1024,512,false],"1536x1536":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png",1024,512,false],"2048x2048":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png",1024,512,false],"pk-small":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1-80x80.png",80,80,true],"pk-thumbnail":["https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1-300x225.png",300,225,true]},"post_excerpt_stackable_v2":"<p>In this tutorial we&#8217;ll cover the steps to install xRDP on your remote CentOS 7 machine, and how to connect to it via Remote Desktop Connection. We&#8217;ll also show you how to install and connect to different Desktop Environments on your remote CentOS 7 machine. xRDP is a free and open source Remote Desktop Protocol Server that allows other operating systems, other than Windows, to provide a fully functional remote desktop experience. xRDP is fully compatible with rdesktop, FreeRDP and even Microsoft&#8217;s Remote Desktop Client. Get a High RAM VPS at Entry-level Pricing Starting with 2GB RAM at $6.99\/month Take&hellip;<\/p>\n","category_list_v2":"<a href=\"https:\/\/draculaservers.com\/tutorials\/category\/centos\/\" rel=\"category tag\">CentOS<\/a>, <a href=\"https:\/\/draculaservers.com\/tutorials\/category\/getting-started\/\" rel=\"category tag\">Getting Started<\/a>","author_info_v2":{"name":"Vlad","url":"https:\/\/draculaservers.com\/tutorials\/author\/vlad\/"},"comments_num_v2":"8 comments","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP<\/title>\n<meta name=\"description\" content=\"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP\" \/>\n<meta property=\"og:description\" content=\"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials\" \/>\n<meta property=\"og:url\" content=\"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/\" \/>\n<meta property=\"og:site_name\" content=\"Dracula Servers Tutorials\" \/>\n<meta property=\"article:published_time\" content=\"2019-01-07T20:31:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-06T16:55:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Vlad\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Vlad\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/\"},\"author\":{\"name\":\"Vlad\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\"},\"headline\":\"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP\",\"datePublished\":\"2019-01-07T20:31:36+00:00\",\"dateModified\":\"2023-07-06T16:55:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/\"},\"wordCount\":1020,\"commentCount\":8,\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png\",\"keywords\":[\"centos\",\"RDP\",\"xRDP\"],\"articleSection\":[\"CentOS\",\"Getting Started\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/\",\"name\":\"Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png\",\"datePublished\":\"2019-01-07T20:31:36+00:00\",\"dateModified\":\"2023-07-06T16:55:36+00:00\",\"description\":\"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#primaryimage\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png\",\"width\":1024,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/install-xrdp-centos\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#website\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"name\":\"Dracula Servers Tutorials\",\"description\":\"Dedicated Servers\",\"publisher\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#organization\",\"name\":\"Dracula Servers\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"contentUrl\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/wp-content\\\/uploads\\\/2016\\\/06\\\/dracula_full_logo_smaller.png\",\"width\":1625,\"height\":200,\"caption\":\"Dracula Servers\"},\"image\":{\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/draculaservers.com\\\/tutorials\\\/#\\\/schema\\\/person\\\/931f7fa8b2126ace6edfb82775e0ec0e\",\"name\":\"Vlad\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g\",\"caption\":\"Vlad\"},\"description\":\"Tech Support\",\"sameAs\":[\"https:\\\/\\\/draculaservers.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP","description":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/","og_locale":"en_US","og_type":"article","og_title":"Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP","og_description":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials","og_url":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/","og_site_name":"Dracula Servers Tutorials","article_published_time":"2019-01-07T20:31:36+00:00","article_modified_time":"2023-07-06T16:55:36+00:00","og_image":[{"width":1024,"height":512,"url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png","type":"image\/png"}],"author":"Vlad","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Vlad","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#article","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/"},"author":{"name":"Vlad","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e"},"headline":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP","datePublished":"2019-01-07T20:31:36+00:00","dateModified":"2023-07-06T16:55:36+00:00","mainEntityOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/"},"wordCount":1020,"commentCount":8,"publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png","keywords":["centos","RDP","xRDP"],"articleSection":["CentOS","Getting Started"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/","url":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/","name":"Connect to CentOS 7 using Remote Desktop Connection (RDP) via xRDP","isPartOf":{"@id":"https:\/\/draculaservers.com\/tutorials\/#website"},"primaryImageOfPage":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#primaryimage"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#primaryimage"},"thumbnailUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png","datePublished":"2019-01-07T20:31:36+00:00","dateModified":"2023-07-06T16:55:36+00:00","description":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP with DraculaServers Tutorials","breadcrumb":{"@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#primaryimage","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2019\/01\/Connect-to-CentOS-7-via-Remote-Desktop-Connection-RDP-With-xRDP-1.png","width":1024,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/draculaservers.com\/tutorials\/install-xrdp-centos\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/draculaservers.com\/tutorials\/"},{"@type":"ListItem","position":2,"name":"How to Connect to a CentOS 7 Server via Remote Desktop Connection using xRDP"}]},{"@type":"WebSite","@id":"https:\/\/draculaservers.com\/tutorials\/#website","url":"https:\/\/draculaservers.com\/tutorials\/","name":"Dracula Servers Tutorials","description":"Dedicated Servers","publisher":{"@id":"https:\/\/draculaservers.com\/tutorials\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/draculaservers.com\/tutorials\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/draculaservers.com\/tutorials\/#organization","name":"Dracula Servers","url":"https:\/\/draculaservers.com\/tutorials\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/","url":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","contentUrl":"https:\/\/draculaservers.com\/tutorials\/wp-content\/uploads\/2016\/06\/dracula_full_logo_smaller.png","width":1625,"height":200,"caption":"Dracula Servers"},"image":{"@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/draculaservers.com\/tutorials\/#\/schema\/person\/931f7fa8b2126ace6edfb82775e0ec0e","name":"Vlad","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/499c7a24aa9727703300a291f8f69dfd1b01b8d6a19a4ae4fbe669b4b12b8cbe?s=96&d=mm&r=g","caption":"Vlad"},"description":"Tech Support","sameAs":["https:\/\/draculaservers.com"]}]}},"_links":{"self":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1288","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/comments?post=1288"}],"version-history":[{"count":5,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1288\/revisions"}],"predecessor-version":[{"id":2612,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/posts\/1288\/revisions\/2612"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media\/1300"}],"wp:attachment":[{"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/media?parent=1288"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/categories?post=1288"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/draculaservers.com\/tutorials\/wp-json\/wp\/v2\/tags?post=1288"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}