ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    What Are You Doing Right Now

    Water Closet
    time waster
    285
    88.9k
    41.4m
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • momurdaM
      momurda
      last edited by

      Why Newegg, why?
      0_1535062209171_5e3e4727-157b-4d4a-b8ac-6e73866ef152-image.png

      KellyK 1 Reply Last reply Reply Quote 0
      • KellyK
        Kelly @momurda
        last edited by

        @momurda said in What Are You Doing Right Now:

        Why Newegg, why?
        0_1535062209171_5e3e4727-157b-4d4a-b8ac-6e73866ef152-image.png

        Because, like another site, Newegg is not a tech company.

        1 Reply Last reply Reply Quote 0
        • momurdaM
          momurda
          last edited by

          Right, but Newegg sells stuff for $, 'the other site' needs ads for $.

          1 Reply Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller
            last edited by

            Installing an RDS server.

            DustinB3403D 1 Reply Last reply Reply Quote 0
            • DustinB3403D
              DustinB3403 @scottalanmiller
              last edited by

              @scottalanmiller said in What Are You Doing Right Now:

              Installing an RDS server.

              A Windows one?

              scottalanmillerS 1 Reply Last reply Reply Quote 0
              • travisdh1T
                travisdh1 @wirestyle22
                last edited by

                @wirestyle22 said in What Are You Doing Right Now:

                @scottalanmiller said in What Are You Doing Right Now:

                @wirestyle22 said in What Are You Doing Right Now:

                As expected, Guacamole doesn't like Deepin but this was my first test.

                Guacamole should be installed on a server. Deepin is a desktop client, not really designed for server use. As a client, it should work fine.

                It's as a client. I think part of it is the wallpaper. I had limited time last night but it didn't seem like I could turn it off via the normal settings. Have to figure out nginx/SSL for guac tonight anyway.

                My guacamole nginx reverse proxy settings.

                server {
                	client_max_body_size 40M;
                	listen 443 ssl;
                	server_name guacamole.myserver.domain.com;
                	ssl	on;
                	ssl_certificate	/etc/ssl/myserver.domain.com.pem;
                	ssl_certificate_key /etc/ssl/myserver.domain.com.key;
                	ssl_stapling_verify on;
                	ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
                	ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
                	ssl_prefer_server_ciphers	on;
                	ssl_session_cache shared:SSL:10m;
                	add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
                
                	location / {
                		proxy_set_header X-Real-IP $remote_addr;
                		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                		proxy_set_header Host $http_host;
                		proxy_set_header Connection $http_connection;
                		proxy_http_version 1.1;
                		proxy_pass http://10.10.10.2:8080;
                		proxy_redirect off;
                		access_log off;
                		proxy_buffering off;
                	}
                }
                
                server {
                	client_max_body_size 40M;
                	listen 80;
                	server_name guacamole.travisdh1.net;
                	rewrite	^ https://guacamole.myserver.domain.com$request_uri? permanent;
                }
                

                Turning off the proxy buffering is the important difference you need to add that isn't in @JaredBusch's guide to nginx reverse proxy.

                1 Reply Last reply Reply Quote 1
                • siringoS
                  siringo
                  last edited by

                  trippin' out to maggot brain by funkadelic

                  1 Reply Last reply Reply Quote 2
                  • hobbit666H
                    hobbit666
                    last edited by hobbit666

                    After sleeping on it and taking everything in, i've decided to give Hyper-V another chance (can some confirm that (i think i've seen this mentioned) hyper-v can replicate to another hyper-v server for FREE?)

                    Installed Admin center on my machine and started to play with it. Already impressed when just looking at what it can do on my machine, going to add a few hosts and have a play. Can't do to much as i'm off on hols after today for a week and a half.

                    *Also going to install Veeam Free on my RADIUS server and script some backups of my Linux machines.

                    scottalanmillerS 1 Reply Last reply Reply Quote 0
                    • hobbit666H
                      hobbit666
                      last edited by

                      New problem, install veeam free on a spare server.
                      Added my Hyper-V host and tried doing a VeeamZip on a Linux VM. Failed. Rebooted all 3 (i.e. Veeam Server, Hyper-V host and VM) still no go.
                      Shutdown the VM and it works 😞
                      This is the error:-

                      24/08/2018 13:07:17 :: Unable to allocate processing resources. Error: Job failed ('Checkpoint operation for 'VMNAME' failed. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)

                      Production checkpoints cannot be created for 'VMNAME'. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)'). Error code: '32770'.
                      Failed to create VM recovery snapshot, VM ID 'ed67a2c9-56f6-429d-ad2e-89ff8375cde3'.

                      Getting the feeling instead of being like a "Ducks Arse" i should look at maybe a "paid" solution that will be Hyper-V and ESXi

                      black3dynamiteB 1 Reply Last reply Reply Quote 0
                      • DustinB3403D
                        DustinB3403
                        last edited by

                        @hobbit666 there are several possible causes for this, found here. (granted its from 2014 but I doubt the reasoning for the error would change)

                        Look at the resolutions on that page and see if you can't fix the issue before jumping to the conclusion of "I have to pay for something to have it work". When it clearly works.

                        I use VeeamZip to backup a few VM's here and it works just fine.

                        1 Reply Last reply Reply Quote 0
                        • jt1001001J
                          jt1001001
                          last edited by

                          Dealing with toll fraud, I mis-configured a firewall rule and left a gateway wide open. Won't do that again

                          1 Reply Last reply Reply Quote 0
                          • black3dynamiteB
                            black3dynamite @hobbit666
                            last edited by

                            @hobbit666 said in What Are You Doing Right Now:

                            New problem, install veeam free on a spare server.
                            Added my Hyper-V host and tried doing a VeeamZip on a Linux VM. Failed. Rebooted all 3 (i.e. Veeam Server, Hyper-V host and VM) still no go.
                            Shutdown the VM and it works 😞
                            This is the error:-

                            24/08/2018 13:07:17 :: Unable to allocate processing resources. Error: Job failed ('Checkpoint operation for 'VMNAME' failed. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)

                            Production checkpoints cannot be created for 'VMNAME'. (Virtual machine ID ED67A2C9-56F6-429D-AD2E-89FF8375CDE3)'). Error code: '32770'.
                            Failed to create VM recovery snapshot, VM ID 'ed67a2c9-56f6-429d-ad2e-89ff8375cde3'.

                            Getting the feeling instead of being like a "Ducks Arse" i should look at maybe a "paid" solution that will be Hyper-V and ESXi

                            Is the Linux Integration Services installed on those VMs?

                            1 Reply Last reply Reply Quote 0
                            • WrCombsW
                              WrCombs
                              last edited by

                              Hope everyone has a good Friday!

                              1 Reply Last reply Reply Quote 2
                              • DustinB3403D
                                DustinB3403
                                last edited by

                                The unread bug is back it seems.

                                0_1535120362884_chrome_2018-08-24_10-18-57.png

                                JaredBuschJ 1 Reply Last reply Reply Quote 0
                                • JaredBuschJ
                                  JaredBusch @DustinB3403
                                  last edited by JaredBusch

                                  @dustinb3403 said in What Are You Doing Right Now:

                                  The unread bug is back it seems.

                                  0_1535120362884_chrome_2018-08-24_10-18-57.png

                                  Nope. Just refresh your browser.

                                  DustinB3403D 1 Reply Last reply Reply Quote 0
                                  • scottalanmillerS
                                    scottalanmiller
                                    last edited by

                                    Busy morning already. How is everyone?

                                    dbeatoD 1 Reply Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @hobbit666
                                      last edited by

                                      @hobbit666 said in What Are You Doing Right Now:

                                      After sleeping on it and taking everything in, i've decided to give Hyper-V another chance (can some confirm that (i think i've seen this mentioned) hyper-v can replicate to another hyper-v server for FREE?)

                                      Yes, Hyper-V (and its features) are all free.

                                      1 Reply Last reply Reply Quote 1
                                      • EddieJenningsE
                                        EddieJennings
                                        last edited by

                                        Somtimes I love PowerShell

                                        0_1535123083491_e88d64c3-d820-4dd6-8fbb-f5fc7a7a717d-image.png

                                        dafyreD 1 Reply Last reply Reply Quote 0
                                        • DustinB3403D
                                          DustinB3403 @JaredBusch
                                          last edited by

                                          @jaredbusch said in What Are You Doing Right Now:

                                          @dustinb3403 said in What Are You Doing Right Now:

                                          The unread bug is back it seems.

                                          0_1535120362884_chrome_2018-08-24_10-18-57.png

                                          Nope. Just refresh your browser.

                                          Yeah cause I didn't try that. . .

                                          1 Reply Last reply Reply Quote 0
                                          • dbeatoD
                                            dbeato @scottalanmiller
                                            last edited by

                                            @scottalanmiller said in What Are You Doing Right Now:

                                            Busy morning already. How is everyone?

                                            Some Office 365 Customers getting this
                                            https://twitter.com/Office365Status/status/1032990569792978945

                                            And patching networking devices.

                                            1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3107
                                            • 3108
                                            • 3109
                                            • 3110
                                            • 3111
                                            • 4443
                                            • 4444
                                            • 3109 / 4444
                                            • First post
                                              Last post