“Oh no! Something has gone wrong.” What am I doing wrong with the default CentOS VNC configuration? ...

What are the main differences between Stargate SG-1 cuts?

Why are vacuum tubes still used in amateur radios?

How to force a browser when connecting to a specific domain to be https only using only the client machine?

How can a team of shapeshifters communicate?

Mounting TV on a weird wall that has some material between the drywall and stud

Differences to CCompactSize and CVarInt

What is the origin of 落第?

Does the Black Tentacles spell do damage twice at the start of turn to an already restrained creature?

Tannaka duality for semisimple groups

How would you say "es muy psicólogo"?

How can I prevent/balance waiting and turtling as a response to cooldown mechanics

Does the Mueller report show a conspiracy between Russia and the Trump Campaign?

Relating to the President and obstruction, were Mueller's conclusions preordained?

Found this skink in my tomato plant bucket. Is he trapped? Or could he leave if he wanted?

How much damage would a cupful of neutron star matter do to the Earth?

What does Turing mean by this statement?

Is there public access to the Meteor Crater in Arizona?

Why datecode is SO IMPORTANT to chip manufacturers?

If Windows 7 doesn't support WSL, then what is "Subsystem for UNIX-based Applications"?

Is there hard evidence that the grant peer review system performs significantly better than random?

My mentor says to set image to Fine instead of RAW — how is this different from JPG?

Did any compiler fully use 80-bit floating point?

two integers one line calculator

How to write capital alpha?



“Oh no! Something has gone wrong.” What am I doing wrong with the default CentOS VNC configuration?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)
Come Celebrate our 10 Year Anniversary!How to get the full GNOME desktop (CENTOS) with VNC?linux vnc : how to view the console?How to configure VNC in Linux SuseStartX Fatal Server Error After Opening VNC SessionVNC goes to wrong IP (CentOS and Smoothwall VM)VNC permission forwarding with CentOS 7Can't get VNC server to work in CentOS 7.4Arch Server running VNC no longer displaying anythingTrying to get TigerVncServer and Lightdm to workWhat is wrong with my Centos DNS server configuration?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







8















I'm trying to configure a little PC settop for work that will mostly be used as a remote backup server (basically just something that exists for the extremely remote possibility that our data center disappears in the rapture) at my employer's home. I'm using a NUC5CPYH with CentOS 7. It's got a 2TB laptop hard drive and 8 GB of RAM. I installed from the minimal CD, added GNOME. Updated to today's repos with yum upgrade.



Basically, the relevant extent of my configuration can be found here. Other than shell utilities I like (e.g., tmux) I haven't added much else that didn't come along with the commands:



yum -y groups install "GNOME Desktop"
yum install vnc-server


My biggest deviation from that howtoforge instruction method is my exec line set VNC to display at 1024x768:



ExecStart=/usr/sbin/runuser -l <user> -c "/usr/bin/vncserver %i -geometry 1024x768"


(where <user> is obviously the right username)



I wanted one remote desktop user, my employer, who would be able to access it remotely if ever necessary. Mostly that would just be on his home LAN. The intended X display is :1.



By and large everything I've tried works beautifully except remote desktop. GNOME works fine locally. However, when I try to VNC in several problems occur.



Problem 1



I can't see the mouse cursor at any time when I VNC in. It's obviously responding to mouse input. I just can't see the cursor in the client.



Problem 2



This error message taking up the whole tigervnc client window saying "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again." Very helpful, thank you. "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again."



Per Problem 1, I can hit that "Log Out" button even though I have to hover around until I find it with the mouse cursor. Once I hit it, the screen looks like: What happens after I close the error message



At this point, I can repeat the process by restarting the VNC server with systemctl.



Other details



uname -a output:



Linux [REDACTED].[REDACTED] 3.10.0-327.22.2.el7.x86_64 #1 SMP Thu Jun 23 17:05:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux


The configuration file /etc/systemd/system/vncserver@:1.service looks like:



[Unit]
Description=Remote desktop service (VNC)
After=syslog.target network.target

[Service]
Type=forking
ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
ExecStart=/usr/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i -geometry 1024x768"
PIDFile=/home/<USER>/.vnc/%H%i.pid
ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

[Install]
WantedBy=multi-user.target


I'm assuming this doesn't matter, but I'm using tigervnc client on my home desktop running ArchLinux to access this.










share|improve this question














bumped to the homepage by Community 13 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    8















    I'm trying to configure a little PC settop for work that will mostly be used as a remote backup server (basically just something that exists for the extremely remote possibility that our data center disappears in the rapture) at my employer's home. I'm using a NUC5CPYH with CentOS 7. It's got a 2TB laptop hard drive and 8 GB of RAM. I installed from the minimal CD, added GNOME. Updated to today's repos with yum upgrade.



    Basically, the relevant extent of my configuration can be found here. Other than shell utilities I like (e.g., tmux) I haven't added much else that didn't come along with the commands:



    yum -y groups install "GNOME Desktop"
    yum install vnc-server


    My biggest deviation from that howtoforge instruction method is my exec line set VNC to display at 1024x768:



    ExecStart=/usr/sbin/runuser -l <user> -c "/usr/bin/vncserver %i -geometry 1024x768"


    (where <user> is obviously the right username)



    I wanted one remote desktop user, my employer, who would be able to access it remotely if ever necessary. Mostly that would just be on his home LAN. The intended X display is :1.



    By and large everything I've tried works beautifully except remote desktop. GNOME works fine locally. However, when I try to VNC in several problems occur.



    Problem 1



    I can't see the mouse cursor at any time when I VNC in. It's obviously responding to mouse input. I just can't see the cursor in the client.



    Problem 2



    This error message taking up the whole tigervnc client window saying "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again." Very helpful, thank you. "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again."



    Per Problem 1, I can hit that "Log Out" button even though I have to hover around until I find it with the mouse cursor. Once I hit it, the screen looks like: What happens after I close the error message



    At this point, I can repeat the process by restarting the VNC server with systemctl.



    Other details



    uname -a output:



    Linux [REDACTED].[REDACTED] 3.10.0-327.22.2.el7.x86_64 #1 SMP Thu Jun 23 17:05:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux


    The configuration file /etc/systemd/system/vncserver@:1.service looks like:



    [Unit]
    Description=Remote desktop service (VNC)
    After=syslog.target network.target

    [Service]
    Type=forking
    ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
    ExecStart=/usr/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i -geometry 1024x768"
    PIDFile=/home/<USER>/.vnc/%H%i.pid
    ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

    [Install]
    WantedBy=multi-user.target


    I'm assuming this doesn't matter, but I'm using tigervnc client on my home desktop running ArchLinux to access this.










    share|improve this question














    bumped to the homepage by Community 13 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      8












      8








      8








      I'm trying to configure a little PC settop for work that will mostly be used as a remote backup server (basically just something that exists for the extremely remote possibility that our data center disappears in the rapture) at my employer's home. I'm using a NUC5CPYH with CentOS 7. It's got a 2TB laptop hard drive and 8 GB of RAM. I installed from the minimal CD, added GNOME. Updated to today's repos with yum upgrade.



      Basically, the relevant extent of my configuration can be found here. Other than shell utilities I like (e.g., tmux) I haven't added much else that didn't come along with the commands:



      yum -y groups install "GNOME Desktop"
      yum install vnc-server


      My biggest deviation from that howtoforge instruction method is my exec line set VNC to display at 1024x768:



      ExecStart=/usr/sbin/runuser -l <user> -c "/usr/bin/vncserver %i -geometry 1024x768"


      (where <user> is obviously the right username)



      I wanted one remote desktop user, my employer, who would be able to access it remotely if ever necessary. Mostly that would just be on his home LAN. The intended X display is :1.



      By and large everything I've tried works beautifully except remote desktop. GNOME works fine locally. However, when I try to VNC in several problems occur.



      Problem 1



      I can't see the mouse cursor at any time when I VNC in. It's obviously responding to mouse input. I just can't see the cursor in the client.



      Problem 2



      This error message taking up the whole tigervnc client window saying "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again." Very helpful, thank you. "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again."



      Per Problem 1, I can hit that "Log Out" button even though I have to hover around until I find it with the mouse cursor. Once I hit it, the screen looks like: What happens after I close the error message



      At this point, I can repeat the process by restarting the VNC server with systemctl.



      Other details



      uname -a output:



      Linux [REDACTED].[REDACTED] 3.10.0-327.22.2.el7.x86_64 #1 SMP Thu Jun 23 17:05:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux


      The configuration file /etc/systemd/system/vncserver@:1.service looks like:



      [Unit]
      Description=Remote desktop service (VNC)
      After=syslog.target network.target

      [Service]
      Type=forking
      ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
      ExecStart=/usr/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i -geometry 1024x768"
      PIDFile=/home/<USER>/.vnc/%H%i.pid
      ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

      [Install]
      WantedBy=multi-user.target


      I'm assuming this doesn't matter, but I'm using tigervnc client on my home desktop running ArchLinux to access this.










      share|improve this question














      I'm trying to configure a little PC settop for work that will mostly be used as a remote backup server (basically just something that exists for the extremely remote possibility that our data center disappears in the rapture) at my employer's home. I'm using a NUC5CPYH with CentOS 7. It's got a 2TB laptop hard drive and 8 GB of RAM. I installed from the minimal CD, added GNOME. Updated to today's repos with yum upgrade.



      Basically, the relevant extent of my configuration can be found here. Other than shell utilities I like (e.g., tmux) I haven't added much else that didn't come along with the commands:



      yum -y groups install "GNOME Desktop"
      yum install vnc-server


      My biggest deviation from that howtoforge instruction method is my exec line set VNC to display at 1024x768:



      ExecStart=/usr/sbin/runuser -l <user> -c "/usr/bin/vncserver %i -geometry 1024x768"


      (where <user> is obviously the right username)



      I wanted one remote desktop user, my employer, who would be able to access it remotely if ever necessary. Mostly that would just be on his home LAN. The intended X display is :1.



      By and large everything I've tried works beautifully except remote desktop. GNOME works fine locally. However, when I try to VNC in several problems occur.



      Problem 1



      I can't see the mouse cursor at any time when I VNC in. It's obviously responding to mouse input. I just can't see the cursor in the client.



      Problem 2



      This error message taking up the whole tigervnc client window saying "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again." Very helpful, thank you. "Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again."



      Per Problem 1, I can hit that "Log Out" button even though I have to hover around until I find it with the mouse cursor. Once I hit it, the screen looks like: What happens after I close the error message



      At this point, I can repeat the process by restarting the VNC server with systemctl.



      Other details



      uname -a output:



      Linux [REDACTED].[REDACTED] 3.10.0-327.22.2.el7.x86_64 #1 SMP Thu Jun 23 17:05:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux


      The configuration file /etc/systemd/system/vncserver@:1.service looks like:



      [Unit]
      Description=Remote desktop service (VNC)
      After=syslog.target network.target

      [Service]
      Type=forking
      ExecStartPre=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'
      ExecStart=/usr/sbin/runuser -l <USER> -c "/usr/bin/vncserver %i -geometry 1024x768"
      PIDFile=/home/<USER>/.vnc/%H%i.pid
      ExecStop=/bin/sh -c '/usr/bin/vncserver -kill %i > /dev/null 2>&1 || :'

      [Install]
      WantedBy=multi-user.target


      I'm assuming this doesn't matter, but I'm using tigervnc client on my home desktop running ArchLinux to access this.







      centos vnc






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jun 26 '16 at 17:07









      BolwerkBolwerk

      14614




      14614





      bumped to the homepage by Community 13 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 13 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Try using other platform & VNC client to access your server. That way you will know if problem is on server or client side.






          share|improve this answer
























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "2"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f786379%2foh-no-something-has-gone-wrong-what-am-i-doing-wrong-with-the-default-centos%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Try using other platform & VNC client to access your server. That way you will know if problem is on server or client side.






            share|improve this answer




























              0














              Try using other platform & VNC client to access your server. That way you will know if problem is on server or client side.






              share|improve this answer


























                0












                0








                0







                Try using other platform & VNC client to access your server. That way you will know if problem is on server or client side.






                share|improve this answer













                Try using other platform & VNC client to access your server. That way you will know if problem is on server or client side.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 15 '18 at 14:18









                TripkoTripko

                12




                12






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Server Fault!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fserverfault.com%2fquestions%2f786379%2foh-no-something-has-gone-wrong-what-am-i-doing-wrong-with-the-default-centos%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    117736 Шеррод Примітки | Див. також | Посилання | Навігаційне...

                    As a Security Precaution, the user account has been locked The Next CEO of Stack OverflowMS...

                    Маріан Котлеба Зміст Життєпис | Політичні погляди |...