ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. tiagom
    T
    • Profile
    • Following 2
    • Followers 5
    • Topics 2
    • Posts 327
    • Groups 0

    tiagom

    @tiagom

    155
    Reputation
    958
    Profile views
    327
    Posts
    5
    Followers
    2
    Following
    Joined
    Last Online

    tiagom Unfollow Follow

    Best posts made by tiagom

    • RE: Help with Helpy

      Ok got it working using the CentOS guild. Here is what differed from the guild and what i found unclear.

      rails user needs to added to sudoers using visudo under

       root    ALL=(ALL)       ALL
      

      I added

      rails   ALL=(ALL)       ALL
      

      The following command fails because the latest activesupport requires Ruby version >= 2.2.2

      gem install rails --no-ri --no-rdoc
      

      Had to install v4.2.7 instead of the latest. I used:

      gem install activesupport -v 4.2.7
      gem install rails -v 4.2.7 --no-ri --no-rdoc
      

      To clear up a question from earlier when you run

      rake secret
      

      The output needs to be put in /config/secrets.yml under production: secret_key_base:

      The postgresql password needs to be edited in /config/database.yml under production: password:

      The following command doesn't work

      rails s -e production -b your.ip.add.ress:3000
      

      It should be

      rails s -e production -b your.ip.add.ress
      

      The /etc/rc.d/init.d/nginx script has a typo, line 92 is Esac it should be esac

      For /opt/nginx/conf/nginx.conf i did not replace the contents with what was provided as the versions differed, instead i just added the following under location

      root /home/rails/helpy/public;
      passenger_enabled on;
      rails_env production;
      

      I commented out the index index.html index.htm

      I can provide my /opt/nginx/conf/nginx.conf and /etc/rc.d/init.d/nginx if needed. I could give you the whole vm if needed, i run it under hyper-v.

      Also i needed to stop the firewall

      service iptables stop
      
      posted in IT Discussion
      T
      tiagom
    • RE: What Are You Doing Right Now

      0_1470355111953_image.jpg

      Time to head home in this beauty

      posted in Water Closet
      T
      tiagom
    • RE: Win a ticket to MangoCon courtesy of Colocation America!

      Very generous

      posted in MangoCon
      T
      tiagom
    • RE: Quick LSI RAID Question

      @Dashrender said in Quick LSI RAID Question:

      @scottalanmiller said in Quick LSI RAID Question:

      @momurda said in Quick LSI RAID Question:

      You dont use server racks or virtualization?

      They use whitebox desktops as servers, no virtualization. Nothing enterprise is allowed. We've been discussing this in other threads and offline as well. It's nothing to do with price, in fact it is costing a ton. It's one person's personal agenda and nothing to do with needs, resources or anything. But yeah, none of that stuff allowed.

      RUN - RUN away from that company as fast as a new job will allow - or even faster if you can afford to be without that job for a while!

      What he said..

      posted in IT Discussion
      T
      tiagom
    • How do you keep track of licenses?

      Curious as what license management/tracking software others use.

      posted in IT Discussion
      T
      tiagom
    • RE: To Password Protect a network folder or not

      I had this come up previously. I secured it with standard folder permissions. The user logging into their computer is the "password protection".

      posted in IT Discussion
      T
      tiagom
    • RE: To Password Protect a network folder or not

      For some reason users love to try and put passwords on everything.. If only they could remember them...

      posted in IT Discussion
      T
      tiagom
    • RE: How do you keep track of licenses?

      I'm slowing switching everything over to snipe-it. How about 200 assets and 100 licenses in it so far. Much happier then the previous method.

      posted in IT Discussion
      T
      tiagom
    • RE: Would You Hire Someone in IT Who Does Not Have a Home Lab

      @FrostyPhoenix my solution would be to use the usb ports to the left of the ethernet cable 😉

      posted in IT Careers
      T
      tiagom
    • RE: Same bugs for days now

      I ran into the same issue. Perhaps we should bring up a bug with nodebb, it should not accept a custom homepage without the custom homepage route being populated.

      posted in Platform and Category Issues
      T
      tiagom

    Latest posts made by tiagom

    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @robblehead Can you provide the install log? /var/log/snipeit-install.log

      posted in IT Discussion
      T
      tiagom
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @rejivincentc said in Installing Snipe-IT on CentOS 7 and MariaDB:

      Installing psy/psysh (v0.8.14): Cloning 91e53c1656
      Failed to download psy/psysh from source: The process "git clone --no-checkout 'https://github.com/bobthecow/psysh.git' '/var/www/html/snipeit/vendor/psy/psysh' && cd '/var/www/html/snipeit/vendor/psy/psysh' && git remote add composer 'https://github.com/bobthecow/psysh.git' && git fetch composer" exceeded the timeout of 300 seconds.
      Now trying to download from dist
      Installing psy/psysh (v0.8.14): Downloading (100%)

      Appears to be an issue cloning.

      Perhaps github was having issues when you were trying to install?

      posted in IT Discussion
      T
      tiagom
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @robblehead You restore the database and then restore the files to the appropriate place. I don't have a backup in front of me but the file structure is preserved in the backup.

      If you're extracting on windows don't use the builtin unzip. You need to use 7zip or another file archiver.

      SnipeIT currently as far as i am aware does not have an automated restore backup feature.

      posted in IT Discussion
      T
      tiagom
    • RE: Installing Snipe-IT on CentOS 7 and MariaDB

      @rejivincentc

      You don't need to run

      setenforce 0
      mkdir -p /var/www/html; cd /var/www/html/
      

      The script handles selinux setup on CentOS 7.

      I just tested it and successfully install on CentOS 7. Can you provide the output of /var/log/snipeit-install.log ?

      posted in IT Discussion
      T
      tiagom
    • RE: Domain Trust failed on a VM

      @jimmy9008 said in Domain Trust failed on a VM:

      Disconnect the VM from the virtual NIC. Reboot VM from host management. Connect to VM from host management (the VM is now not on the network). Login with domain admin creds. This will be allowed as 'offline login/admin'.

      Then put the VM back on to the network whilst logged on and rejoin the VM back to the domain. Then restart. Easy.

      Rejoining to the domain will create a new SID. Not sure if that would cause issues for the CA in AD.

      posted in IT Discussion
      T
      tiagom
    • RE: Domain Trust failed on a VM

      @kelly

      Run Test-ComputerSecureChannel -Verbose to confirm broken trust relationship.

      To repair:

      Reset the computer account in AD.

      Run powershell as administrator on the machine with broken trust.

      $c = Get-Credential
      Enter domain admin creds

      Test-ComputerSecureChannel -Verbose -Credential $c -Repair

      posted in IT Discussion
      T
      tiagom
    • RE: Error while installing Snipe IT

      @scottalanmiller said in Error while installing Snipe IT:

      Snipe-IT has a lot of fragility around their install scripts, and not a huge user base so issues are difficult to track down.

      I can personally promise that v4 installs under Debian 8 & 9.1, Ubuntu 14.04.5 & 16.04.3 & 17.04 and CentOS 6 & 7.

      If it doesn't ping me.

      posted in IT Discussion
      T
      tiagom
    • RE: SnipeIT - Connection Refused

      Original snipeit installer had it added on Sep 26, 2016.

      posted in IT Discussion
      T
      tiagom
    • RE: SnipeIT - Connection Refused

      The installer doesn't setenforce 0. Depending on the distro being installed it even checks if selinux is enforcing and runs
      setsebool -P httpd_can_connect_ldap on
      chcon -R -h -t httpd_sys_script_rw_t /var/www/html/snipeit/

      posted in IT Discussion
      T
      tiagom
    • RE: What Are You Doing Right Now

      Current master has a dependency that requires php7+. The fix is in develop but hasn't been pushed to master.

      posted in Water Closet
      T
      tiagom