ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. dave_c
    3. Best
    D
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 157
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: How do I replace one Domain Controller server with another and keep IP address?

      @magicmarker
      What @JaredBusch said 🙂 +make sure DC2 is a global catalog before demoting DC1.
      Regarding replication, as I don't like to wait I would use repadmin to be sure replication is completed instead of waintg for x business days.

      posted in IT Discussion
      D
      dave_c
    • RE: Backup target recommendation for Veeam B&R

      @thwr
      I have mine working out of CentOS 7 minimal with ssh/perl and ports 2500-5000 open. Veeam does not even need root or NFS for a Linux repository.
      Be careful as Veeam copies and executes programs to /tmp and I had my /tmp partition with noexec; took me a while to figure it out.

      posted in IT Discussion
      D
      dave_c
    • RE: Xen Orchestra - Community Edition - Installing with Yarn

      As it may help someone else:
      I just made a new installation of XO Community (xo-server 5.32.2, xo-web 5.32.1) and found a problem with the web interface not fully working. As I use nginx as a reverse SSL proxy and HTTP authenticator I needed a custom .config.yaml

      It happens that the included sample.config.yaml is not ready to be used (it's a sample, I get it). The mounts: section does not include the required files to be served.
      Mine, which is a default installation worked with:

        mounts:
          '/': '/opt/xen-orchestra/packages/xo-web/dist'
      
      posted in IT Discussion
      D
      dave_c
    • RE: Xen Orchestra - Community Edition - Installing with Yarn

      @dbeato
      Shame on me for skipping that part, I lost about 1 hour. In my defense, their documentation is not consistent (so I was kind of lost).

      • Here it is recommending packages/xo-server/.xo-server.yaml
      • I remember having used packages/xo-server/.config.yaml
      • Now I'm using /etc/xo-server/config.yaml per https://xen-orchestra.com/docs/configuration.html

      Thank you!

      posted in IT Discussion
      D
      dave_c
    • RE: Data Base Management

      @WrCombs
      Now I'm intrigued. Can you do me a favor?
      Please download http://www.alexnolan.net/software/dbf.htm and try to open a copy of one of those DBfs.

      • If it works you will have your solution
      • If it does not work, I will owe you one
      posted in IT Discussion
      D
      dave_c
    • RE: Standard Plugins for WordPress Sites

      @jmoore said in Standard Plugins for WordPress Sites:

      disable xml-rpc

      I protect xml-rpc and Admin from brute force attacks with some ConfigServer Security & Firewall (CSF) custom rules. Basically I instruct CSF/LFD to look for POST requests to xmlrpc.php & wp-login.php in the webserver log and block the source IPs after x failed attempts

      posted in IT Discussion
      D
      dave_c
    • RE: MailCow in Production Datacenter

      @travisdh1 said in MailCow in Production Datacenter:

      things randomly break.

      I agree. I have avoided docker because some things do not seem reliable. And I have applied mailcow updates that break things that should not be broke: I mean what happens makes no sense.
      On the other hand, I have moved mailcow from Debian to CentOS within short maintenance windows and docker has eased the process.
      Now that I think about it, mailcow is probably the only docker based deployment I have and probably will for some time

      posted in IT Discussion
      D
      dave_c
    • RE: What Are You Doing Right Now

      Migrating a medium sized WordPress site to a new server. I don't like WP

      posted in Water Closet
      D
      dave_c
    • RE: Continuous asynch file replication in linux?

      I would say:
      lsyncd for user mode, simple, rsync based solution: https://github.com/axkibe/lsyncd
      csync2 for multi-host synchronization with conflict detection: https://github.com/LINBIT/csync2
      MARS for a kernel side solution (DRBD alternative): http://schoebel.github.io/mars/

      posted in IT Business
      D
      dave_c
    • RE: Backup target recommendation for Veeam B&R

      @manheraz
      This may help a bit:
      https://www.virtualtothecore.com/en/permissions-for-veeam-backup-linux-repositories/

      posted in IT Discussion
      D
      dave_c
    • RE: Dipping Toes Into Programming

      @scottalanmiller
      Oh, yes: Learn from a good source.
      PHP "was" badly designed. PHP 7 has more sanity. Quoting someone on the internet: "Languages like Python or Ruby were designed, PHP just happened"

      posted in Developer Discussion
      D
      dave_c
    • RE: What Are You Doing Right Now

      @EddieJennings
      For standalone WordPress hosting I usually use Centmin Mod option 22. It is fast and rock solid

      posted in Water Closet
      D
      dave_c
    • RE: Windows Server Backup and Oracle

      In NOARCHIVELOG mode the database must be shut down before you can back it up. I recommend you to change the database mode to ARCHIVELOG so you can perform an online backup.

      There are many documents and blog posts about it, but this may help you:
      https://www.veritas.com/support/en_US/article.000011425

      posted in IT Discussion
      D
      dave_c
    • RE: Dipping Toes Into Programming

      @tim_g
      Some editors handle the TODO's very well when prefixed like this:
      //TODO: whatever ...
      /TODO: whatever .../
      Thay way you can have a look of all of your pending stuff in one place
      0_1522032136990_156ea2bc-5715-41b1-bd0b-6e18dfb54662-image.png
      The editor in the picture is PhpStorm

      posted in Developer Discussion
      D
      dave_c
    • RE: What Are You Doing Right Now

      @tonyshowoff
      Absolutely. I am slowly "forcing" the move from cPanel to Linux without a control Panel. So far, the sites moved are working very well

      posted in Water Closet
      D
      dave_c
    • RE: Windows Server Backup and Oracle

      But what Backup system/software are you using?

      I know that the question is not for me but... That is an interesting one. I have used a few (from BackupExec to Veeam) and of course, Oracle's RMAN. Oracle database in a beast and in my experience it doesn't matter what backup software you use; you need play by their rules.

      In this case, it seems like the backup software is just trying to use Oracle's VSS writer to backup. I have done that and recovered databases like that, but in ARCHIVELOG mode. In this case the VSS writer is chocking on NOARCHIVELOG.

      In the end, I usually have 2 backups:

      • RMAN
      • Something else that backs up at least the RMAN backups; sometimes in addition to its own backup.

      Call me paranoid.

      posted in IT Discussion
      D
      dave_c
    • RE: Web UI design tools

      @scottalanmiller
      We are developing an Student information System for a customer. Pinegrow + VS Code are a nice combination

      posted in Developer Discussion
      D
      dave_c
    • RE: NextCloud Automated Installation

      @jaredbusch @black3dynamite
      Perhaps I didn't update config.php!
      I will check later, thank you

      posted in IT Discussion
      D
      dave_c
    • RE: Mail hosting

      Jokes aside, Mailcow works very well and the author's support is awesome; this one I use and recommend.
      I would say that Mailcheap's web site has lots of information, but that's me. I don't use it as I host my own email (besides using Office 365/G Suite/others depending on the client). I just seemed to me that it checked all @thwr needs while being recommended by people I trust.
      $0.02

      posted in IT Discussion
      D
      dave_c
    • RE: The Myth of RDP Insecurity

      I also use Cyberarms Intrusion Detection.It works well

      posted in IT Discussion
      D
      dave_c
    • 1
    • 2
    • 3
    • 1 / 3