ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. WLS-ITGuy
    3. Posts
    • Profile
    • Following 0
    • Followers 1
    • Topics 126
    • Posts 875
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Debian apt-get update error

      @jaredbusch said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      @jrc said in Debian apt-get update error:

      sudo du -h --max-depth=1 | sort -hr

      In /var/www/web/logs I have an access log that is 7.5GB. Can I purge that?

      Your logs should be cycling. Is this a log for a single day?

      It was not for a single day. It was from day 1 of the server life (25-Sept-2015)

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @jaredbusch said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      @jaredbusch doubtful

      I know the logs are set to cycle by most applications. No idea how your system was setup originally.

      But to answer your question, stop the webserver service apache stop I think for Debian.

      Delete the log

      Start the webserver again service apache start

      The apache process will recreate a new log.

      Gotcha

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @jaredbusch said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      @jrc said in Debian apt-get update error:

      sudo du -h --max-depth=1 | sort -hr

      In /var/www/web/logs I have an access log that is 7.5GB. Can I purge that?

      Your logs should be cycling. Is this a log for a single day?

      I'm downloading it now so I can go through it and verify that it isn't all one day. Can I delete it and create a new .log file and go on my way?

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @jaredbusch doubtful

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @jrc said in Debian apt-get update error:

      sudo du -h --max-depth=1 | sort -hr

      In /var/www/web/logs I have an access log that is 7.5GB. Can I purge that?

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @jaredbusch said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      @dbeato said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      After running apt-get update I get the following error:

      Failed to fetch http://mirrors.linode.com/debian/dists/stretch/main/i18n/Translation-en Write error - write (28: No space left on device)

      Odd part is I am only using 35% of the total disk on Linode but if I run df -h I get this:

      Filesystem Size Used Avail Use% Mounted on
      /dev/root 16G 16G 35M 100% /
      devtmpfs 2.0G 0 2.0G 0% /dev
      tmpfs 2.0G 0 2.0G 0% /dev/shm
      tmpfs 2.0G 202M 1.8G 11% /run
      tmpfs 5.0M 0 5.0M 0% /run/lock
      tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
      tmpfs 395M 0 395M 0% /run/user/0

      I can see that DEV/ROOT is full but I cannot identify if those files are needed. Any kick in the right direction would be helpful.

      What does

      du -h --max-depth=1
      

      Show?

      root@www:~# du -h --max-depth=1
      8.0K ./.local
      4.0K ./.well-known
      8.0K ./.vim
      16K ./.aptitude
      420M ./wordpress
      436M .

      you ran that from the www directory. that doesn't help you.

      run that from /

      cd /
      du -h --max-depth=1
      

      then head down the rabbit hole chasing the largest subdirectory until you find the culprit

      root@www:/# du -h --max-depth=1
      43M ./lib
      8.5M ./bin
      436M ./root
      4.0K ./lib64
      0 ./dev
      4.0K ./srv
      24K ./home
      4.0K ./boot
      8.0K ./media
      8.0K ./.well-known
      du: cannot access './proc/7124/task/7124/fd/3': No such file or directory
      du: cannot access './proc/7124/task/7124/fdinfo/3': No such file or directory
      du: cannot access './proc/7124/fd/4': No such file or directory
      du: cannot access './proc/7124/fdinfo/4': No such file or directory
      0 ./proc
      16K ./lost+found
      4.0K ./pki-validation
      0 ./sys
      976M ./usr
      14G ./var
      6.0M ./etc
      32K ./tmp
      5.8M ./sbin
      202M ./run
      47M ./opt
      4.0K ./mnt
      16G .

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Debian apt-get update error

      @dbeato said in Debian apt-get update error:

      @wls-itguy said in Debian apt-get update error:

      After running apt-get update I get the following error:

      Failed to fetch http://mirrors.linode.com/debian/dists/stretch/main/i18n/Translation-en Write error - write (28: No space left on device)

      Odd part is I am only using 35% of the total disk on Linode but if I run df -h I get this:

      Filesystem Size Used Avail Use% Mounted on
      /dev/root 16G 16G 35M 100% /
      devtmpfs 2.0G 0 2.0G 0% /dev
      tmpfs 2.0G 0 2.0G 0% /dev/shm
      tmpfs 2.0G 202M 1.8G 11% /run
      tmpfs 5.0M 0 5.0M 0% /run/lock
      tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
      tmpfs 395M 0 395M 0% /run/user/0

      I can see that DEV/ROOT is full but I cannot identify if those files are needed. Any kick in the right direction would be helpful.

      What does

      du -h --max-depth=1
      

      Show?

      root@www:~# du -h --max-depth=1
      8.0K ./.local
      4.0K ./.well-known
      8.0K ./.vim
      16K ./.aptitude
      420M ./wordpress
      436M .

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • Debian apt-get update error

      After running apt-get update I get the following error:

      Failed to fetch http://mirrors.linode.com/debian/dists/stretch/main/i18n/Translation-en Write error - write (28: No space left on device)

      Odd part is I am only using 35% of the total disk on Linode but if I run df -h I get this:

      Filesystem Size Used Avail Use% Mounted on
      /dev/root 16G 16G 35M 100% /
      devtmpfs 2.0G 0 2.0G 0% /dev
      tmpfs 2.0G 0 2.0G 0% /dev/shm
      tmpfs 2.0G 202M 1.8G 11% /run
      tmpfs 5.0M 0 5.0M 0% /run/lock
      tmpfs 2.0G 0 2.0G 0% /sys/fs/cgroup
      tmpfs 395M 0 395M 0% /run/user/0

      I can see that DEV/ROOT is full but I cannot identify if those files are needed. Any kick in the right direction would be helpful.

      posted in IT Discussion debian 9.1
      WLS-ITGuyW
      WLS-ITGuy
    • RE: No check ins since 3:40 CST

      @scottalanmiller said in No check ins since 3:40 CST:

      Tagging @Sodium @QuixoticJeremy

      At least I put it in the right category 🙂

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • No check ins since 3:40 CST

      Not sure if this is a big deal or not but none of my machines have checked in since 3:40 CT

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Remove machine from control center

      Sorry. Thought I posted it in the right spot but with the week I'm having should've known something would have been jacked up.

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • Remove machine from control center

      I am having an issue with a VM not checking in. I think it is because I had to restore the VM from backup and something got hosed with it. I just want to delete it from my CC all together and start over with that machine. I have uninstalled Salt-Minion from the VM but it still shows in my CC. How do I remove it from there?

      posted in SodiumSuite sodiumsuite virtual machine
      WLS-ITGuyW
      WLS-ITGuy
    • RE: I can't even

      @dashrender said in I can't even:

      @scottalanmiller said in I can't even:

      0_1512598043125_DeepinScreenshot_select-area_20171206160716.png

      Straight from the MS docs.

      As MS makes clear, SA doesn't cover cold backups, but only cold backups that have additionally been set up for disaster recovery purposes only. They make it clear that standard replicas that are kept cold need no license.

      My definition, industry definition, MS definition - all agree. I got it from this originally.

      So a warm backup requires turning it on to receive backups of data from prod server. Then they list mirroring, replication, and log shipping.

      But replication does not require turning the VM on, soooo.... replication is an exception to the turning on rule?

      So am I to understand that if I have VEEAM set up to replicate I need a license for both the Production and the replicated backup?

      posted in Water Closet
      WLS-ITGuyW
      WLS-ITGuy
    • RE: I can't even

      This whole thread makes my damned head hurt.

      posted in Water Closet
      WLS-ITGuyW
      WLS-ITGuy
    • FreePBX PC Phones

      Anyone using FreePBX have a good softphone to recommend? I have a user who spends most of his time out of the office/country and would like to use a softphone vs. personal phone.

      posted in IT Discussion freepbx softphones
      WLS-ITGuyW
      WLS-ITGuy
    • Ticket setup question

      Am I missing a way to set up so that if someone emails [email protected] it will come into Sodium Suite?

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • Feature Request - Spiceworks ticket history import

      I know I asked this before and this has been noted in another thread. But I figured I'd make it an official request. Ticket history import from spiceworks. I only need the info like email (user) and ticket data. Most of my users do not match to a machine in SW for some reason.

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • RE: Sodium Update

      @dashrender said in Sodium Update:

      @quixoticjustin said in Sodium Update:

      Just did another small deployment. Minor stuff, not worth mentioning.

      Yet you mentioned. 😉

      Glad someone else realized it was Snarky Monday.

      posted in SodiumSuite
      WLS-ITGuyW
      WLS-ITGuy
    • RE: macOS High Sierra login flaw - root

      Something tells me Rojo is working on his 2nd mac.

      posted in IT Discussion
      WLS-ITGuyW
      WLS-ITGuy
    • 1
    • 2
    • 28
    • 29
    • 30
    • 31
    • 32
    • 43
    • 44
    • 30 / 44