July 22, 200817 yr So I was just about to add the line for disabling my dfs in the Go script. When I set up LMCE I changed from a static IP to DHCP and in my go script it is still has my static ip listed. Can I comment or remove that line or how do I fix that, could this have been causing my no Carrier and resolv problem with LMCE. The servers address is not DHCP supplied by LMCE and is not static anymore. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & echo nameserver 192.168.1.1 >/etc/resolv.conf echo 192.168.1.109 Tower >>/etc/hosts sleep 30 for i in /dev/md* do blockdev --setra 2048 $i done thx Dave
July 22, 200817 yr So I was just about to add the line for disabling my dfs in the Go script. When I set up LMCE I changed from a static IP to DHCP and in my go script it is still has my static ip listed. Can I comment or remove that line or how do I fix that, could this have been causing my no Carrier and resolv problem with LMCE. The servers address is not DHCP supplied by LMCE and is not static anymore. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & echo nameserver 192.168.1.1 >/etc/resolv.conf echo 192.168.1.109 Tower >>/etc/hosts sleep 30 for i in /dev/md* do blockdev --setra 2048 $i done thx Dave Either delete the lines, or put a leading "#" on each to comment them out. #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & #echo nameserver 192.168.1.1 >/etc/resolv.conf #echo 192.168.1.109 Tower >>/etc/hosts sleep 30 for i in /dev/md* do blockdev --setra 2048 $i done
July 22, 200817 yr Author Joe, So when I inintially setup LMCE it found all of my shares and setup the sql DB no issues. It was not until the power failure and I had to reboot the server, this would have been the first time I rebooted LMCE and the server together so the newly applied DHCP address from LMCE which also changes the gateway from 192.168.1.1 to 192.168.80.1 as the LMCE Core is now the gateway and dhcp server as well. So Up on reboot of the two machines with these two lines in my go script would the lmce core not be sure as to how to resolv my servers on the network, I am grasping to find a fix for this problem and I am hoping this being as obvious as it is would be the dilemma now I am wondering if I actually have to insert the DFS off command as I said the first time I setup LMCE it all worked untiil I had to reboot them both. Thanks again, your a lifesaver. Dave
Archived
This topic is now archived and is closed to further replies.