ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Alex Sage
    3. Best
    A
    • Profile
    • Following 8
    • Followers 2
    • Topics 374
    • Posts 3,641
    • Groups 0

    Posts

    Recent Best Controversial
    • What the best way to test IOPS?

      ???

      posted in IT Discussion
      A
      Alex Sage
    • RE: Is there anyway to clean up the cabling behind the rack?

      @NattNatt said:

      Plus why the oversized patch panels?! We have 48-port ones that are 1u, why do you have 24 ports that are 2u 😕

      Fixing that tomorrow! 🙂

      posted in IT Discussion
      A
      Alex Sage
    • RE: Is there anyway to clean up the cabling behind the rack?

      @NattNatt said:

      Cable ladder down the wall, velcro to that in nice neat runs.

      Link?

      posted in IT Discussion
      A
      Alex Sage
    • RE: About to lose it... stupid PXE boot

      @dafyre said:

      What was the problem?

      Yes, please do tell 🙂

      posted in IT Discussion
      A
      Alex Sage
    • RE: Is there anyway to clean up the cabling behind the rack?

      @Jason That look really nice!

      I will never have that much cable.

      posted in IT Discussion
      A
      Alex Sage
    • Do you backup your cloud servers?

      For example, I just setup OwnCloud on Vultr

      Do I need you back it up? or am I over thinking it?

      Is backup Vultr's job or mine? Should I trust my provider?

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @wrx7m

      0_1457553267742_2016-03-09 14_53_20-Deploy Servers - Vultr.com.png

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @wrx7m because there not listed anymore 😞

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @wrx7m use my link! 😄

      http://www.vultr.com/?ref=6879383

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @wrx7m Thanks!

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @wrx7m said:

      Is anyone using the applications method for owncloud deployment, or are you all just using a Linux instance and installing owncloud manually?

      Manually because I want CentOS 7 🙂

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      @scottalanmiller said:

      NTG already had a talk and management approved leaving ownCloud because we can't trust they anymore.

      What are you moving to? There are no good alternatives.

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      Backups are stored in the same datacenter as the original instance on a separate fault tolerant storage system.

      https://www.vultr.com/docs/vps-automatic-backups

      Not quite the backup I was hoping for 😞

      posted in IT Discussion
      A
      Alex Sage
    • RE: Do you backup your cloud servers?

      Different Storage = Good

      Same Datacenter = Bad.

      posted in IT Discussion
      A
      Alex Sage
    • Installing OwnCloud 9 on CentOS 7 with REMI\EPEL, PHP 5.6, Apache 2.4, MariaDB and SSL

      THIS IS A WORK IN PROGRESS

      The goal of this guide is to install OwnCloud 9 using OwnCloud's best practices, and recommended software.

      I will do my best to make sure it's secure as possible.

      Credit goes to @JaredBusch and @scottalanmiller for there guides provided me a roadmap.

      First, we will update our fresh install

      yum -y update
      

      Now install packages:

      yum -y install wget mariadb-server php-mysql httpd epel-release wget
      

      Install REMI Repository

      wget http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
      rpm -Uvh remi-release-7.rpm
      

      Enable REMI repository

      Edit file remi.repo,

      vi /etc/yum.repos.d/remi.repo
      

      Find the line enabled =0 and change it to 1 to enable REMI repository and PHP 5.6 for CentOS7

      [...]
      enabled=1
      [...]
      

      Save and close the file.

      Install owncloud

      rpm --import https://download.owncloud.org/download/repositories/stable/CentOS_7/repodata/repomd.xml.key
      wget http://download.owncloud.org/download/repositories/stable/CentOS_7/ce:stable.repo -O /etc/yum.repos.d/ce:stable.repo
      setenforce permissive #is this needed?
      yum clean expire-cache
      yum -y install owncloud
      

      Now enable the services:

      systemctl start httpd
      systemctl enable httpd
      systemctl start mariadb
      systemctl enable mariadb
      

      Placeholder

      chown -R apache:apache /var/www/html/owncloud
      chown -R apache:apache /data
      

      Firewall Rules
      firewall-cmd --zone=public --add-port=http/tcp --permanent
      firewall-cmd --zone=public --add-port=https/tcp --permanent
      firewall-cmd --reload

      Make a data dir

      mkdir /data
      
      mysql_secure_installation
      

      <output>

      Sign in to the database and create the ownCloud instance and user.

      mysql -uroot -p
      

      You will then be prompted to enter your database root password.

      Now you will run 4 SQL commands, please note the ; at the end of each. It is a required part of the SQL syntax . These are simplified defaults, I would generally recommend you set them to something a little less obvious just to help with security.

      create database ownclouddb;
      create user 'ownclouduser'@'localhost' identified by 'ownclouduserpassword';
      grant all on ownclouddb.* to 'ownclouduse'@'localhost';
      flush privileges;
      quit
      

      0_1457663964750_2016-03-10 21_37_59-ownCloud.png

      posted in IT Discussion
      A
      Alex Sage
    • RE: Vultr | DO vs. "Big Boys" - AWS | Azure

      @johnhooks Funny thing is you could like host a few dozen small sites with the same resources.

      posted in IT Discussion
      A
      Alex Sage
    • RE: C2: Insanely Affordable x86-64 Servers

      @johnhooks said

      I know Ubuntu 15.10 is systemd, CentOS 7 is also systemd. So if you run a CentOS 7 host you can run Ubuntu 15.10 containers (what I'm doing for my XO container).

      I will be using Ubuntu as the host. CentOS7 as the guest 🙂

      posted in IT Discussion
      A
      Alex Sage
    • Are the Ethernet clamshell RJ45 connectors worth the extra cost?

      alt text

      http://www.amazon.com/Platinum-Tools-100010C-Connectors-Clamshell/dp/B000FI9VU2/

      posted in IT Discussion
      A
      Alex Sage
    • RE: Are the Ethernet clamshell RJ45 connectors worth the extra cost?

      Nothing special needed to POE right?

      posted in IT Discussion
      A
      Alex Sage
    • RE: C2: Insanely Affordable x86-64 Servers

      @scottalanmiller

      What is a VDR? VDR stands for Virtual Dedicated Resources. Unlike a standard VPS package, you can split the resources you pay for into as many servers of any size you want. (Per VPS Limits HERE)

      Have 12GB of RAM? You can create

      • 1 x 12GB server with 4IPs
      • 3 x 4GB servers with 1 IP each and 2 with 2 IPs
      • 1 x 6GB + 2 x 3GB servers

      The combinations are endless

      posted in IT Discussion
      A
      Alex Sage
    • 1
    • 2
    • 23
    • 24
    • 25
    • 26
    • 27
    • 41
    • 42
    • 25 / 42