ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Categories
    3. IT Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • DustinB3403D

      OSX Mojave - System Storage - Time Machine Disabled

      Watching Ignoring Scheduled Pinned Locked Moved osx apple apfs time machine system storage
      4
      1 Votes
      4 Posts
      960 Views
      DustinB3403D

      @RojoLoco said in OSX Mojave - System Storage - Time Machine Disabled:

      @DustinB3403 said in OSX Mojave - System Storage - Time Machine Disabled:

      That seems unnecessary as this shouldn't be so difficult, nor should it ever occur.

      ...because everything apple does is perfect and never, ever malfunctions in any way, right?

      Yeah. . . no I get the stance. What makes no sense is there is no way for me to find where this bulk is coming from.

    • JaredBuschJ

      Office 365 OWA blocks Microsofts own content

      Watching Ignoring Scheduled Pinned Locked Moved microsoft o365 office 365 owa content filtering
      4
      2 Votes
      4 Posts
      965 Views
      JaredBuschJ

      @DustinB3403 said in Office 365 OWA blocks Microsofts own content:

      Would you really want MS making exceptions on your behalf and without your knowledge?

      I don't have a safe senders list. Yet I get attachments and links all the time.

      More than likely, the DKIM/SPF checks failed to cause that.

    • EddieJenningsE

      KVM / Red Hat Virtualization Management

      Watching Ignoring Scheduled Pinned Locked Moved virtualization kvm red hat virtualization virtualization management
      45
      0 Votes
      45 Posts
      6k Views
      D

      @scottalanmiller RHV now, after a rebrand in 2016-ish

    • pmonchoP

      Secure Meshcentral server on Vultr

      Watching Ignoring Scheduled Pinned Locked Moved meshcentral mc ssh keys
      40
      1 Votes
      40 Posts
      5k Views
      pmonchoP

      Upgraded from 18.04.2 LTS to current. Accepted default answers for individuals packages during upgrade.

      Had issue with MC and the meshcentral-data/meshcentral.db getting set with root:root perms and this caused a few errors with starting MC from meshcentral.service

      Changed perms to back to <user>:<user> and all is well. Don't know what would change those perms though? Either way, all is well now.

    • scottalanmillerS

      Upgrading to osTicket 1.11.0

      Watching Ignoring Scheduled Pinned Locked Moved osticket osticket 1.11 helpdesk ticket ticketing
      12
      1 Votes
      12 Posts
      3k Views
      scottalanmillerS

      @JaredBusch said in Upgrading to osTicket 1.11.0:

      So what is the point of using OSTicket? There are solutions for that.

      Time tracking would be nice. But lots of shops don't use it. MSPs do, but internal IT often does not.

    • travisdh1T

      XCP-NG/XenServer tapdisk error

      Watching Ignoring Scheduled Pinned Locked Moved xenserver xcp-ng tapdisk xen
      10
      1 Votes
      10 Posts
      3k Views
      travisdh1T

      @Danp said in XCP-NG/XenServer tapdisk error:

      It's a bug... see https://mailchi.mp/7ed52f9a2151/important-noticeopenvswitch-issue

      Sure enough, that was it.

    • anthonyhA

      GPO Software Deployment Woes

      Watching Ignoring Scheduled Pinned Locked Moved
      34
      0 Votes
      34 Posts
      3k Views
      notverypunnyN

      @anthonyh said in GPO Software Deployment Woes:

      Just a side note: I can confirm that @Dashrender 's suggestion of creating a CNAME works like a charm. I created a new software deployment GPO and added the source via the CNAME record and deployment was successful.

      Glad to see that I was mistaken šŸ™‚

    • wrx7mW

      Nomad - Manage Mac OS in Windows/AD Environment - Anyone Used It?

      Watching Ignoring Scheduled Pinned Locked Moved mac os osx bind active directory nomad
      3
      1 Votes
      3 Posts
      751 Views
      wrx7mW

      @DustinB3403 said in Nomad - Manage Mac OS in Windows/AD Environment - Anyone Used It?:

      I've heard of it, and it's supposedly a really good product, the issue with it is the cost. At least at the time.

      The product now is JAMF Connect. So it looks to be a dead product that was replaced.

      Interesting. I'll look into that. I didn't see any mention of jamf.

    • scottalanmillerS

      Setting Up a Standard MySQL or MariaDB Database for an Application

      Watching Ignoring Scheduled Pinned Locked Moved database mysql mariadb rdbms how to dba system administration fedora linux centos 7 rhel 7 ubuntu centos
      5
      3 Votes
      5 Posts
      2k Views
      JaredBuschJ

      @black3dynamite said in Setting Up a Standard MySQL or MariaDB Database for an Application:

      @JaredBusch said in Setting Up a Standard MySQL or MariaDB Database for an Application:

      I like my approach to setting this up.

      Obviously, install MySQL/MariaDB first as noted above.

      Then do the following. This all needs done in the same SSH session, but otherwise things are simple.

      Choose once of these exports for your DB root password.

      The first one is for you to specify, the second generates a random one and echo's it back to you.

      # Specify your own password for MariaDB root user export DB_ROOT_PASS="somebigpasswordgoeshere" # Generate a random password for MariaDB root user export DB_ROOT_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30)" echo "This is your MariaDB root password: $DB_ROOT_PASS" Specify the application database name and application user name # Database user to use for application export DB_USER='yourusername' # Database name to use for application export DB_NAME='yourdatabasename' Generate or specify a random password for the database user # Specify your own password for the application's database user export DB_PASS="somebigpasswordgoeshere" # Generate a random password for the application's database user export DB_PASS="$(head /dev/urandom | tr -dc A-Za-z0-9 | head -c 30)" echo "This is your password for the application user: $DB_PASS" Then create the application database, use, and grant access. mysql -e "CREATE DATABASE $DB_NAME;" mysql -e "CREATE USER '$DB_USER'@'localhost' IDENTIFIED BY '$DB_PASS';" mysql -e "GRANT ALL ON $DB_NAME.* TO '$DB_USER'@'localhost';" mysql -e "FLUSH PRIVILEGES;" Finally, lock down the system without the interactive requirement of mysql_secure_installation # Secure MariaDB (this does what mysql_secure_installation performs without interaction) mysql -e "UPDATE mysql.user SET Password=PASSWORD('$DB_ROOT_PASS') WHERE User='root';" mysql -e "DELETE FROM mysql.user WHERE User='root' AND Host NOT IN ('localhost', '127.0.0.1', '::1');" mysql -e "DELETE FROM mysql.user WHERE User='';" # Beginning on some version of MariaDB after Fedora 29 was released, the test DB is no longer there by defualt. mysql -e "DROP DATABASE test;" mysql -e "FLUSH PRIVILEGES;"

      Your approach makes it easier to use as part of a script.

      It also generates random passwords, which I prefer.

    • scottalanmillerS

      Copy / Paste from Excel on Mac to Outlook Web Access Creates Image Rather than Table

      Watching Ignoring Scheduled Pinned Locked Moved mac macos apple excel owa email office 365 o365 mac osx
      11
      1 Votes
      11 Posts
      3k Views
      scottalanmillerS

      @LilAng said in Copy / Paste from Excel on Mac to Outlook Web Access Creates Image Rather than Table:

      In Excel, use File > Save as web page, then attach the web page to your email message?

      Yeah, we found that process. That's a pretty huge "fail" process.

    • LilAngL

      Wifi Card Not Being Seen

      Watching Ignoring Scheduled Pinned Locked Moved laptop wifi asus
      8
      0 Votes
      8 Posts
      1k Views
      LilAngL

      @gjacobse said in Wifi Card Not Being Seen:

      have you tried using a Linux OS? This could be helpful in determination of the Hardware and OS

      everything else works fine except the wifi for some reason just kicks off to the point the card itself is not recognized even with drivers re loaded , until you physically unplug and plug back in.

    • scottalanmillerS

      Make an osTicket Database Backup

      Watching Ignoring Scheduled Pinned Locked Moved osticket backup mysql mariadb mysqldump database rdbms
      8
      1 Votes
      8 Posts
      3k Views
      JaredBuschJ

      @Dashrender said in Make an osTicket Database Backup:

      Total DB Admin noob here - so bare with me.

      Does this include the username/password setup for this DB? or does that need to be maintained separately?

      i.e. you have to rebuild from this backup - do you just create a brand new SQL user and grant them rights to this DB upon import, then use that new account to give access to the app?

      In typing out my question I kinda assume the answer is the second bit - you just create a new user and assign them rights.

      Correct. The user and the database are separate things.

    • M

      Losing mouse via hyper v manager

      Watching Ignoring Scheduled Pinned Locked Moved
      13
      1 Votes
      13 Posts
      2k Views
      DashrenderD

      @DustinB3403 said in Losing mouse via hyper v manager:

      Anyone can login to the console, as the local admin, and have no additional logging (admin login to console from system-name. . .) for example.

      So, there are compliance and logging reasons to not use the console that are general recommendations to "just do".

      What? Who has the administrator account password? Hopefully only the most trusted of all people, a subset of the IT team. So that shouldn't be a real issue.

      As for logging - I have no idea what logging in available in Hyper-V itself when the Hyper-V Manager is logged into and accesses a Hyper-V host - but I would assume that connection itself is logged based upon the username/password of that IT member - and if they have the Administrator name/password - well, there you go.

      As for the actual console - well, there really isn't a way to access a VM from the physical console on the server, so that's a non issue.

    • JaredBuschJ

      Mass upload sound files into FreePBX

      Watching Ignoring Scheduled Pinned Locked Moved freepbx asterisk scripting config sounds how to
      4
      6 Votes
      4 Posts
      2k Views
      JaredBuschJ

      @NashBrydges said in Mass upload sound files into FreePBX:

      Very useful stuff, thanks for this.

      Self serving. I’m buildinging a mass import right now using this process.

    • scottalanmillerS

      Installing osTicket 1.11 on Fedora 29

      Watching Ignoring Scheduled Pinned Locked Moved osticket osticket 1.11 linux fedora fedora 29 helpdesk ticket ticketing
      18
      2 Votes
      18 Posts
      3k Views
      JaredBuschJ

      OSTicket is not a solution I can use, because I need time tracking also.

      I never saw a plugin for that for OSTicket.

    • scottalanmillerS

      Network File System: NFS

      Watching Ignoring Scheduled Pinned Locked Moved nfs storage file system network file system linux unix sun ietf
      1
      1 Votes
      1 Posts
      2k Views
      No one has replied
    • scottalanmillerS

      Network File Systems (aka Distributed File System)

      Watching Ignoring Scheduled Pinned Locked Moved network file system distributed file system nfs smb cifs system administration storage networing sam linux administration sam windows administration
      1
      0 Votes
      1 Posts
      2k Views
      No one has replied
    • stacksofplatesS

      Traefik Reverse Proxy

      Watching Ignoring Scheduled Pinned Locked Moved traefik reverse proxy
      3
      4 Votes
      3 Posts
      819 Views
      stacksofplatesS

      @flaxking said in Traefik Reverse Proxy:

      Are you currently using it in production?

      Not at work. I'm using it for projects outside of that though. My docker compose stack at home uses it.

    • brianlittlejohnB

      KVM VM Replication

      Watching Ignoring Scheduled Pinned Locked Moved kvm replication virtualization storage hypervisor linux drbd gluster ceph hyper-v
      31
      1 Votes
      31 Posts
      11k Views
      scottalanmillerS

      @JaredBusch said in KVM VM Replication:

      @scottalanmiller said in KVM VM Replication:

      Just using the search is best

      Tags.

      yeah, having tags on the topics makes them better than pinning.

    • brandon220B

      DNS A record

      Watching Ignoring Scheduled Pinned Locked Moved
      6
      1 Votes
      6 Posts
      293 Views
      scottalanmillerS

      @brandon220 said in DNS A record:

      It had to be fixed by GoDaddy support. They cleared out the forwarder and all is well.
      I need to look in to Cloudfare.

      oh yeah, they are so good.

    • 1
    • 2
    • 159
    • 160
    • 161
    • 162
    • 163
    • 699
    • 700
    • 161 / 700