similar to: How to specify the default route?

Displaying 20 results from an estimated 10000 matches similar to: "How to specify the default route?"

2010 May 19
4
Networking setup/help
I had to install 5.5 from scratch and now I have to rebuild my home networking system. I haven't had to mess with this stuff in over 5+ years and I'm sure there may be better ways of doing it now. My liunx box acts as firewall/gateway for 2 other pcs. I was using a script from the Linux IP Masquerade HOWTO with ddclient (since I have a dynamic ip). Also, I don't think I need a full
2011 Jun 14
4
Question about custom function.
Hello group, I''m trying to generate configuration for tomcat server. I want it to depend on my mod_jk properties file. I wrote some simple script which you can see here: http://pastebin.com/CffBr0Nc it works just fine. So I tried to move it to puppet as my custom function. It''s available for review here: http://pastebin.com/AeQgTTT6 Now, when I''m running first in irb,
2010 Sep 08
3
LARTC and CentOS question
Hello all, Got myself the Linux Advanced Routing & Traffic control book http://lartc.org/howto/ All the commands in the guide do not survive reboots. Could someone point me in the right direction, where I can find CentOS/Redhat specific documentation on the whole /etc/sysconfig/network* setup? Kind regards, Coert Waagmeester
2011 Jan 05
6
recursively find duplicate filenames
find duplicate filenames in a folder find | perl -ne 's!([^/]+)$!lc $1!e; print if 1 == $seen{$_}++' find duplicate filenames in a folder recursively ? how?
2012 Mar 02
9
zombie child process
Hi, This is the third or fourth time this happens. But puppetd gets a zombie shell childprocess and then never finishes the run. /opt/tc-puppet/bin/ruby /opt/tc-puppet/sbin/puppetd \_ [sh] <defunct> How do I begin looking on what can be wrong? This error has appeared on both 2.7.6 and 2.7.11. Regards, Elias -- You received this message because you are subscribed to the Google Groups
2010 Jul 14
6
Xen cpu requirements
I'm installing Centos 5.5 on a new Dell R301 server. I wanted to run Xen and have the full virtualization possibilities (this is our development support server, so it runs a few real services and is available for playing with things; putting the "playing with things" functions into virtual servers would protect the "few real services", and make it easier to clean up
2010 Apr 23
1
Problem shuting down server.
Have Centos 5.3 installed in a HP ML110 server. After cloning disk using Clonezilla, if I issue a shutdown -h now, or any other command to shut down the server (i.e. init 0 or poweroff), instead of shutting down the server reboots. I googled but could't find any answer. ?Does anybody has a clue about why this is happening? -- Enrique Verdes <EVerdes at conatel.com.uy> Depto. de
2010 May 05
6
Benchmark Disk IO
What is the best way to benchmark disk IO? I'm looking to move one of my servers, which is rather IO intense. But not without first benchmarking the current and new disk array, To make sure this isn't a full waste of time. thanks
2011 Mar 07
6
Dell PERC H800 commandline RAID monitoring tools
We're looking for tools to be used in monitoring the PERC H800 arrays on a set of database servers running CentOS 5.5. We've installed most of the OMSA (Dell monitoring) suite. Our current alerting is happening through SNMP, though it's a bit hit or miss (we apparently missed a couple of earlier predictive failure alerts on one drive). OMSA conflicts with mega-cli, though we may
2010 Feb 26
11
Temperature sensor
Does anyone know of a cheap temperature sensor that will work with Linux? I don't need a fancy monitoring appliance, I just want a simple sensor that I can connect to one of my monitoring servers to let me know if the server room is getting hot. -- Bowie
2013 Mar 04
6
Centos6 ipsec troubles
Hello, it looks like the usual way to do ipsec on centos5 won't work anymore on centos6 I installed ipsec-tools but an interface type IPsec is not recognized by the kernel ifup ipsec0 Device does not seem to be present, delaying initialization. I am not planning to use the awful OpenSwan, I Want to sue the Kame implementation which was working fine on CentOS5 any hints ? thank you
2012 Mar 06
1
Puppet/foreman redundant servers? Cluster, recovery etc
What are the best practices for achieving a maximally redundant and scalable environment? What are you doing? We''re rolling out Puppet with Foreman, mysql, Passenger, on a RHEL6 VMWare box. Configs are stored in SVN and Jenkins. Right now we''ve got those first four things running on the same single server but for production we always want replication whenever possible. --
2010 Jun 04
2
redundant ldap - client config
Hi all, I have a few ldap servers slaved to a primary via syncrepl, all is well. I've set my clients to auth against a few and there /etc/ldap.conf looks like so; uri ldap://primary.domain.com ldap://secondary.domain.com However when either primary or slaves go down, while the clients can log in, access is very slow, ls of any dir is painful. The /var/log/messages shows several failed
2010 May 11
1
ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link
I have been getting the following error when trying to run ldconfig: ldconfig: /usr/lib64/libfreebl3.so is not a symbolic link # ll /usr/lib64/libfreebl3.so -rwxr-xr-x 1 root root 312336 Mar 28 11:13 /usr/lib64/libfreebl3.so I've used "yum whatprovides /usr/lib64/libfreeb13.so" to determine that this file belongs to nss. I have tried to reinstall nss but that does not fix the
2010 Jul 08
2
slow down dd - how?
How can I slow down dd? I don't want to slow down the pc, when generating a big file [~40 GByte]. Does ionice work properly? Thank you for any help! :\
2009 Jan 22
3
disable rquotad and pop
Hi all, I am trying to find out how to disable rquotad and pop (port 443) for rquotad /etc/sysconfig/nfs has it quoted out but yet it is running? How do I disable it? also what about pop? Jerry
2009 Jul 31
2
ActionController::RoutingError (No route matches "/say/hello" with {:method=>:get}):
Hello: I have found a whole lot of posts on this, however, none of them offer any sort of solution other than restarting the web server, which I can''t imagine everyone out there developing on Rails is doing. I am on page 40 of Agile Development with Rails 3rd edition and trying to get the missing template error to show but until I restart webrick I only get the following: Processing
2009 Apr 26
9
Problems running features with Textmate Cucumber bundle
I finally plunked down for the beta RSpec bundle and I''m working through the initial example. Although I''m a fairly experienced RSpec user, I''m stlll learning new tricks. Anyway, I''m going though the mastermind example, and everything is going well, except that I decided to also try out the Textmate bundle for Cucumber. I decided to use Ben Mabey''s
2007 Dec 13
16
"Tricks" for testing after_create callback???
I''ve got a model Message, which needs to send an email using action mailer after it''s first saved in the database. I want to pass the model to the mailer which then uses methods on the message model to render the email. So the natural way to do this is in an after_create callback on the Message model. But I can''t see an easy way to test this. Here''s my spec
2005 Dec 01
3
Strange Estimates from lmer and glmmPQL
I'm trying to fit a generalized mixed effects model to a data set where each subject has paired categorical responses y (so I'm trying to use a binomial logit link). There are about 183 observations and one explanatory factor x. I'm trying to fit something like: (lmer(y~x+(1|subject))) I also tried fitting the same type of model using glmmPQL from MASS. In both cases, I get a