ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Installing Snipe-IT on CentOS 7 and MariaDB

    IT Discussion
    how to snipe-it centos linux centos 7 centos 7.1
    37
    290
    2.9m
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • DashrenderD
      Dashrender
      last edited by

      I stood up a CentOS 7 and ran Scott's single line install.

      It asked me if I wanted to have the system make it's own password, then it asked me to setup a password for the maria DB, then do I want fake data, and allow anonymous user access, and a test db.

      Then it asked me again to create a user and to put in fake data and a test db and remove anonymous, etc and ended with this error.

      0_1448687453749_error.JPG

      1 Reply Last reply Reply Quote 0
      • DashrenderD
        Dashrender
        last edited by

        Everything seems to be working pretty well. I'll get some of our data into it this week.

        Scott's single line install was pretty nice. I looked over the docker setup, huh.. for someone like me who can barely spell Linux let alone admin it - Docker looks like a pain to configure.

        scottalanmillerS 1 Reply Last reply Reply Quote 0
        • scottalanmillerS
          scottalanmiller @Dashrender
          last edited by

          @Dashrender said:

          Everything seems to be working pretty well. I'll get some of our data into it this week.

          Scott's single line install was pretty nice. I looked over the docker setup, huh.. for someone like me who can barely spell Linux let alone admin it - Docker looks like a pain to configure.

          Docker is still non-trivial at this point. It's for people moving to DevOps models.

          stacksofplatesS 1 Reply Last reply Reply Quote 1
          • JaredBuschJ
            JaredBusch
            last edited by

            Can someone provide screen shots of stuff being tracked and such? I do need to get our company assets all tracked someplace. I am always up for something more than a spreadsheet.

            scottalanmillerS 1 Reply Last reply Reply Quote 0
            • JaredBuschJ
              JaredBusch
              last edited by

              I did look at the online demo they have. It looks nice, but it works like crap on my iPad.

              1 Reply Last reply Reply Quote 0
              • stacksofplatesS
                stacksofplates @scottalanmiller
                last edited by

                @scottalanmiller said:

                @Dashrender said:

                Everything seems to be working pretty well. I'll get some of our data into it this week.

                Scott's single line install was pretty nice. I looked over the docker setup, huh.. for someone like me who can barely spell Linux let alone admin it - Docker looks like a pain to configure.

                Docker is still non-trivial at this point. It's for people moving to DevOps models.

                Ya I agree. If you want to start with containers LXC is easier to get started with IMO. It's not as separated as docker is and you can open a console on the container and use it just like a regular system.

                1 Reply Last reply Reply Quote 1
                • scottalanmillerS
                  scottalanmiller @JaredBusch
                  last edited by

                  @JaredBusch said:

                  Can someone provide screen shots of stuff being tracked and such? I do need to get our company assets all tracked someplace. I am always up for something more than a spreadsheet.

                  http://mangolassi.it/topic/6984/snipe-it-asset-management-screenshots

                  1 Reply Last reply Reply Quote 1
                  • JaredBuschJ
                    JaredBusch
                    last edited by

                    Couple questions,

                    1. can I assume that fail2ban will work out of the box since it is just apache?
                    2. Has anyone seen a community support channel for snipe-it? Because I have not seen one.
                    1 Reply Last reply Reply Quote 0
                    • golden3G
                      golden3
                      last edited by

                      Hello Team,

                      i'm facing the below issue while open the http://localhost/ with my ip address

                      **
                      Error **

                      Error in exception handler: The stream or file "/var/www/html/snipeit/app/storage/logs/log-apache2handler-2015-12-19.txt" could not be opened: failed to open stream: Permission denied in /var/www/html/snipeit/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:87

                      Kindly let me know how to fix the issue,

                      Thanks Team,
                      Golden John S

                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                      • JaredBuschJ
                        JaredBusch @golden3
                        last edited by

                        @golden3 said:

                        Hello Team,

                        i'm facing the below issue while open the http://localhost/ with my ip address

                        **
                        Error **

                        Error in exception handler: The stream or file "/var/www/html/snipeit/app/storage/logs/log-apache2handler-2015-12-19.txt" could not be opened: failed to open stream: Permission denied in /var/www/html/snipeit/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:87

                        Kindly let me know how to fix the issue,

                        Thanks Team,
                        Golden John S

                        Did you ensure selinux was disabled? setenforce 0
                        That is pretty much a standard troubleshooting step on CentOS 7. If that fixes it, then you can look into what specific thing need allowed.

                        hartmm90H 1 Reply Last reply Reply Quote 1
                        • hartmm90H
                          hartmm90 @JaredBusch
                          last edited by

                          @JaredBusch This seemed to work for me. I'm extremely new to the linux world. How would one go about finding out why I need to do this every time I restart the server?

                          DashrenderD stacksofplatesS scottalanmillerS 3 Replies Last reply Reply Quote 0
                          • DashrenderD
                            Dashrender @hartmm90
                            last edited by

                            @hartmm90 said:

                            @JaredBusch This seemed to work for me. I'm extremely new to the linux world. How would one go about finding out why I need to do this every time I restart the server?

                            Here are the selinux info

                            https://www.centos.org/docs/5/html/5.2/Deployment_Guide/sec-sel-enable-disable-enforcement.html

                            1 Reply Last reply Reply Quote 0
                            • stacksofplatesS
                              stacksofplates @hartmm90
                              last edited by stacksofplates

                              @hartmm90 said:

                              @JaredBusch This seemed to work for me. I'm extremely new to the linux world. How would one go about finding out why I need to do this every time I restart the server?

                              You will want to change the context of the files instead of disabling SELinux. Most likely you will need to run

                              chcon -R -t httpd_sys_rw_content_t /var/www/html
                              

                              Then if you type

                              ls -lZ
                              

                              In /var/www/html/ it should show the context for each file and it should be

                              httpd_sys_rw_content_t
                              
                              1 Reply Last reply Reply Quote 2
                              • scottalanmillerS
                                scottalanmiller @hartmm90
                                last edited by

                                @hartmm90 said:

                                @JaredBusch This seemed to work for me. I'm extremely new to the linux world. How would one go about finding out why I need to do this every time I restart the server?

                                The high level reason is because whatever your setup is, it is not set up properly for SELinux. And the command being used does not change the SELinux setting but disables it temporarily. When your system reboots it turns SELinux back on since the configuration for it was not changed - it is still set to run when the system starts.

                                JaredBuschJ 1 Reply Last reply Reply Quote 1
                                • JaredBuschJ
                                  JaredBusch @scottalanmiller
                                  last edited by

                                  @scottalanmiller said:

                                  @hartmm90 said:

                                  @JaredBusch This seemed to work for me. I'm extremely new to the linux world. How would one go about finding out why I need to do this every time I restart the server?

                                  The high level reason is because whatever your setup is, it is not set up properly for SELinux. And the command being used does not change the SELinux setting but disables it temporarily. When your system reboots it turns SELinux back on since the configuration for it was not changed - it is still set to run when the system starts.

                                  Right, using setenforce 0 is a troubleshooting step only. by using it to disable SELinux, and everything then worked, you know that you then just need to look at what the application is doing that SELinux does not like. Starting with what @johnhooks said above. Then use setenforce 1 to turn it back on and see if it still works right.

                                  1 Reply Last reply Reply Quote 1
                                  • subi15wrxS
                                    subi15wrx
                                    last edited by

                                    If installing a CentOS7 on a local VM, what base enviroment/addons are needed to have the one line installer work?

                                    scottalanmillerS hobbit666H 3 Replies Last reply Reply Quote 0
                                    • scottalanmillerS
                                      scottalanmiller @subi15wrx
                                      last edited by

                                      @subi15wrx said:

                                      If installing a CentOS7 on a local VM, what base enviroment/addons are needed to have the one line installer work?

                                      Good question. This was done before I had our Scale HC3 cluster with capacity to do all of our testing on vanilla OSes. It was only tested on DO, as far as I know. I'll test this on a CentOS 7 Minimal and let you know....

                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller @subi15wrx
                                        last edited by

                                        @subi15wrx and welcome to the community, by the way!!

                                        1 Reply Last reply Reply Quote 0
                                        • hobbit666H
                                          hobbit666 @subi15wrx
                                          last edited by

                                          @subi15wrx said:

                                          If installing a CentOS7 on a local VM, what base enviroment/addons are needed to have the one line installer work?

                                          All I did on a min install was add net-tools and wget.
                                          Then followed the step by step commands as the one line command didn't work for me. In fact I've just created a new VLAN for "Misc" servers so will be re-installing Snipe very soon (today if I get time - FogServer First)

                                          1 Reply Last reply Reply Quote 0
                                          • scottalanmillerS
                                            scottalanmiller
                                            last edited by

                                            Just ran through the one line installer and it worked.

                                            Indeed wget is missing. So before starting you need to...

                                            yum -y install wget

                                            And on some CentOS 7 minimal installs there is no firewall. If that is the case for you, you should be good. If you have a firewall you will need to open port 80 like so...

                                            firewall-cmd --zone=public --add-port=80/tcp --permanent; firewall-cmd --reload

                                            1 Reply Last reply Reply Quote 2
                                            • 1
                                            • 2
                                            • 11
                                            • 12
                                            • 13
                                            • 14
                                            • 15
                                            • 14 / 15
                                            • First post
                                              Last post