@Sparkum Your ports are open 
Posts
-
RE: Install Zabbix on CentOS 7posted in IT Discussion
@dafyre said in Install Zabbix on CentOS 7:
@Sparkum said in Install Zabbix on CentOS 7:
Well I did this
firewall-cmd --permanent --add-port=10051/tcp
firewall-cmd --permanent --add-port=10050/tcpSo 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 -
RE: What Are You Doing Right Nowposted in Water Closet
@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.
-
RE: Install Zabbix on CentOS 7posted in IT Discussion
@Sparkum Can you post your dashboard please =). Did you activate the host,
Configuration>hosts>yourhost>enable? -
RE: SparkleShare Self hosted Dropbox alternativeposted in IT Discussion
@scottalanmiller I will give it look
and try to set it up! -
RE: What Are You Doing Right Nowposted in Water Closet
@scottalanmiller said in What Are You Doing Right Now:
@Romo said in What Are You Doing Right Now:
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
-
RE: What Are You Doing Right Nowposted in Water Closet
@wirestyle22 The fears and anxiety have not gone away, BUT HOPE, HAPPINNESS, LOVE and so many other great feelings have surpassed them.
-
RE: What Are You Doing Right Nowposted in Water Closet
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.
-
RE: Install Zabbix on CentOS 7posted in IT Discussion
@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 firewalldShould 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.
-
RE: Install Zabbix on CentOS 7posted in IT Discussion
Using
setsebool -P httpd_can_connect_zabbix=1everything appears to be working. -
RE: Install Zabbix on CentOS 7posted in IT Discussion
@JaredBusch It's true, totally forgot we used
setenforce 0in the guide, so I am not actually finished just yet then =P -
RE: What Are You Doing Right Nowposted in Water Closet
Finished setting up a Zabbix server vm following @JaredBusch's guide.
-
RE: Install Zabbix on CentOS 7posted in IT Discussion
Just finished setting up a Zabbix vm following the guide =).
-
RE: Happy Birthday Threadposted in Water Closet
Happy Birthday @Dominica , I really hope you have a great day!
-
RE: Creating an anonymous samba share in CentOS 7posted in IT Discussion
@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.masterWhile editing once again add:
map to guest = Bad Userto 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 = YesCreate your final smb.conf and check for error using:
testparm -s smb.conf.master > smb.confRestart your services:
systemctl restart smb.service
systemctl restart nmb.serviceAnd it should be working.
-
RE: What Are You Doing Right Nowposted in Water Closet
Installing x2go client, to access the NTG lab!
-
RE: Creating an anonymous samba share in CentOS 7posted in IT Discussion
@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?