ssh -t host command
ssh -t host command
Remote Logging On the client, put the following in /etc/syslog-ng/syslog-ng.conf.in: destination tologhost { udp(10.0.0.254 port(514)); }; log { source(src); destination(tologhost); }; Next run SuSEconfig –module syslog-ng to activate the changes On the Log server, add the following: source network { udp(ip(”10.0.0.254F) port(514));}; destination digitalair { file(”/var/log/$HOST”); }; log { source(network); destination(digitalair); }; run SuSEconfig –module […]
If you want to set the umask for all users, you must make sure the umask setting is entered in the configuration file /etc/profile.local. The configuration file /etc/profile is a generic configuration file that is processed by all users logging in to the system. Since, however, YaST doesn’t like modifications to be made directly to […]
Uncategorized No Comments OpenLDAP replication Configuration of OpenLDAP replication is a complex, multistep procedure 1. Create a replicator object on the master server Create an LDIF: dn: uid=replicator,dc=TLSB,dc=com objectClass: inetOrgPerson uid: replicator cn: LDAP Replicator 2. Add the replicator object to the Directory: ldapadd -x -D “cn=Administrator,dc=TLSB,dc=com” -W -f replicator.ldif 3. Give the replicator a […]