ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Romo
    3. Posts
    • Profile
    • Following 3
    • Followers 2
    • Topics 54
    • Posts 875
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: Install Zabbix on CentOS 7

      @Sparkum Your ports are open 😃

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @dafyre said in Install Zabbix on CentOS 7:

      @Sparkum said in Install Zabbix on CentOS 7:

      @dafyre

      Well I did this

      firewall-cmd --permanent --add-port=10051/tcp
      firewall-cmd --permanent --add-port=10050/tcp

      So I assume yes?

      How exactly would I check, sorry

      Did you

      firewall-cmd --reload ?

      Edit: That's a good question... I'm not sure about how to do that with firewalld.

      sudo firewall-cmd --permanent --list-all

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @Sparkum So its working now, right?

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      @wirestyle22 said in What Are You Doing Right Now:

      Let me tell you guys the story of why I feel the way I do about this. Laura and I have a family friend who got pregnant with her husband. They were so happy. Did everything right. The mother was overweight when she got pregnant and developed gestational diabetes (I'm unsure if that contributed to what eventually happened). They went the entire 8.5 months with everything being fine. Got their last checkup before giving birth and the baby had passed away. No real cause given as far as I know. When this happens so close to birth, you still need to give birth the baby even though it isn't alive anymore. This isn't a news story, it's a person I know.

      As much as something like this would change me forever (and I really mean forever), I don't think my fear is for myself but rather for Laura. I can't give birth for her. I can't do any of it for her. If something happens I'll be powerless to stop it. That sort of thing.

      If we were to suffer a loss, I would still be grateful and full of joy because I got to see, feel, hear and speak to my baby girl, even though she is unborn she has change us forever. The promise of her life no matter how long it will be,for me, surpasses the fear of her death.

      posted in Water Closet
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @Sparkum Can you post your dashboard please =). Did you activate the host, Configuration>hosts>yourhost>enable?

      posted in IT Discussion
      RomoR
      Romo
    • RE: SparkleShare Self hosted Dropbox alternative

      @scottalanmiller I will give it look 😃 and try to set it up!

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      @scottalanmiller said in What Are You Doing Right Now:

      @Romo said in What Are You Doing Right Now:

      @wirestyle22

      I totally understand how you feel, I felt the same way not too long ago. We just took the jump, at the end of last year, my wife and I decided it was time to grow our family.

      We are currently at week 30 with 4 days and we are expecting a beautiful baby girl at the end of October or beginnings of November.

      Congrats!

      Thank you

      posted in Water Closet
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      @wirestyle22 The fears and anxiety have not gone away, BUT HOPE, HAPPINNESS, LOVE and so many other great feelings have surpassed them.

      posted in Water Closet
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      @wirestyle22

      I totally understand how you feel, I felt the same way not too long ago. We just took the jump, at the end of last year, my wife and I decided it was time to grow our family.

      We are currently at week 30 with 4 days and we are expecting a beautiful baby girl at the end of October or beginnings of November.

      posted in Water Closet
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @Sparkum Agents listen on port 10050 and apparently the server listens on port 10051;

      so runnning the following on the server:
      firewall-cmd --permanent --add-port=10051/tcp
      systemctl restart firewalld

      Should get the agents connecting properly to the server, I haven't tested it because I have not set any agents to monitor yet in the lab, but from reading the documentation is should work.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Bandwidth Usage By Host

      I use iftop as well.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      Using setsebool -P httpd_can_connect_zabbix=1 everything appears to be working.

      posted in IT Discussion
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      @JaredBusch It's true, totally forgot we used setenforce 0 in the guide, so I am not actually finished just yet then =P

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      Finished setting up a Zabbix server vm following @JaredBusch's guide.

      posted in Water Closet
      RomoR
      Romo
    • RE: Install Zabbix on CentOS 7

      Just finished setting up a Zabbix vm following the guide =).

      posted in IT Discussion
      RomoR
      Romo
    • RE: Creating an anonymous samba share in CentOS 7

      @wirestyle22 Great!!

      posted in IT Discussion
      RomoR
      Romo
    • RE: Happy Birthday Thread

      Happy Birthday @Dominica , I really hope you have a great day!

      posted in Water Closet
      RomoR
      Romo
    • RE: Creating an anonymous samba share in CentOS 7

      @wirestyle22 There is something wrong with your configuration. If you created a backup of the original config start from it again.

      Following the guide you can just:
      rm smb.conf smb.conf.master
      cp smb.conf.bak smb.conf.master
      vi smb.conf.master

      While editing once again add: map to guest = Bad User to the global parameters section.

      Go to the bottom of the file and add your share details once again.

      [sharename]
      path = /chosen/path
      read only = No
      guest ok = Yes
      browseable = Yes 
      public = Yes
      

      Create your final smb.conf and check for error using:
      testparm -s smb.conf.master > smb.conf

      Restart your services:
      systemctl restart smb.service
      systemctl restart nmb.service

      And it should be working.

      posted in IT Discussion
      RomoR
      Romo
    • RE: What Are You Doing Right Now

      Installing x2go client, to access the NTG lab!

      posted in Water Closet
      RomoR
      Romo
    • RE: Creating an anonymous samba share in CentOS 7

      @wirestyle22 the change in config file should have solved the issue of the share asking you for a password. Did you check config file with testparm to check for any other errors?

      posted in IT Discussion
      RomoR
      Romo
    • 1
    • 2
    • 32
    • 33
    • 34
    • 35
    • 36
    • 43
    • 44
    • 34 / 44