Author Archive
Restore firewalld.service file contents. [root@idmipa01 ~]# systemctl enable firewalld Failed to execute operation: Operation not supported [root@idmipa01 ~]# [root@idmipa01 ~]# systemctl enable firewall Failed to execute operation: Access denied [root@idmipa01 ~]# [root@idmipa01 system]# vi firewalld.service [root@idmipa01 system]# systemctl enable firewalld Created symlink from /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service to /usr/lib/systemd/system/firewalld.service. Created symlink from /etc/systemd/system/basic.target.wants/firewalld.service to /usr/lib/systemd/system/firewalld.service. [root@idmipa01 system]# systemctl […]
November 28th, 2016 | Posted in NIX Posts | No Comments
So /etc/resolv.conf was getting consistently overwritten even though NetworkManager was removed using rpm -e $(rpm -aq|grep Network Manager). To find the culprit, we checked what is running on this CentOS 7 system using:
November 23rd, 2016 | Posted in NIX Posts | 1 Comment
Setting Temporary Network Addresses ip a add 192.168.0.200/255.255.255.0 dev eth0 ip route add default 192.168.0.1/255.255.255.0 dev eth0 Cheers, TK
November 2nd, 2016 | Posted in NIX Posts | No Comments
One day we get the following issue (INFO task kworker blocked for more than 120 seconds.):
October 23rd, 2016 | Posted in NIX Posts | No Comments
For this error make sure that the Windows Firewall with Advanced Security has the following two rules enabled on both the Domain and Private profiles: VMware Authd Service VMware Authd Service (private) Cheers, TK
October 22nd, 2016 | Posted in NIX Posts | No Comments
Folks are asking where you are? I've wondered the same and hope to see David Korn back in action again. Thread's been quiet. Did some reasearch earlier and David Korn was hired by Google after departing from AT&T (http://www.unix.com/what-is-on-your-mind-/237119-david-korn-glenn-fowler-laid-off.html). No idea what's he's working on but his profile is: https://www.linkedin.com/in/david-korn-b23185 And some chat about this […]
October 17th, 2016 | Posted in NIX Posts | No Comments
Cloudera Manager Installation Issues When getting the following errors below on the Cloudera Manager Installation on RHEL 7.2+, try both a Date and Time Configuration and stopping then starting the agent service with these commands: systemctl stop cloudera-scm-agent systemctl start cloudera-scm-agent If you get the following messages. In the absence of a DNS server, also check and […]
September 14th, 2016 | Posted in NIX Posts | 1 Comment
yum install ntp -y; timedatectl set-ntp yes; timedatectl set-timezone America/Toronto Use timedatectl list-timezones to get your timezone. Cheers, TK
September 14th, 2016 | Posted in NIX Posts | 1 Comment
journalctl -b –no-pager | less Easy peasy! Cheers, TK
May 2nd, 2016 | Posted in NIX Posts | No Comments
Basically it boils down to this running on Ubuntu: minecraft@minecraftpe01:~$ wget -q -O – https://raw.githubusercontent.com/PocketMine/php-build-scripts/master/installer.sh | bash -s – If the above doesn't work, try this: wget -q -O compile.sh https://raw.githubusercontent.com/PocketMine/php-build-scripts/master/compile.sh then install any dependencies it complains about. To ensure you are compatible with the latest protocols, ensure your .phar file is updated. Direct link […]
May 1st, 2016 | Posted in NIX Posts | No Comments