Presentation is loading. Please wait.

Presentation is loading. Please wait.

Partner Logo German Cancio – WP4-install LCFG HOW-TO - n° 1 How to write LCFGng components for EDG 10/2002

Similar presentations


Presentation on theme: "Partner Logo German Cancio – WP4-install LCFG HOW-TO - n° 1 How to write LCFGng components for EDG 10/2002"— Presentation transcript:

1

2 Partner Logo German Cancio – WP4-install LCFG HOW-TO - n° 1 How to write LCFGng components for EDG 10/2002 German.Cancio@cern.ch

3 German Cancio – WP4-install LCFG HOW-TO - n° 2 Overview LCFG – short reminder Slides stolen from Enrico and Massimo / INFN Writing LCFGng Components for EDG usage Examples Documentation and links

4 German Cancio – WP4-install LCFG HOW-TO - n° 3 LCFG – short reminder

5 German Cancio – WP4-install LCFG HOW-TO - n° 4 WP4 & LCFG u LCFG is originally developed by the Computer Science Department of Edinburgh University u Handles automated installation, configuration and management of machines u Basic features: n automatic installation of O.S. n installation/upgrade/removal of all (rpm-based) software packages n centralized configuration and management of machines n extendible to configure and manage custom application software

6 German Cancio – WP4-install LCFG HOW-TO - n° 5 A collection of agents read configuration parameters and either generate traditional config files or directly manipulate various services Abstract configuration parameters for all nodes stored in a central repository ldxprof Load Profile Generic Component Profile Object rdxprof Read Profile LCFG Objects Local cache Client nodes Web Server HTTP XML Profile LCFG Config Files Make XML Profile Server LCFG diagram +inet.services telnet login ftp +inet.allow telnet login ftp sshd +inet.allow_telnet ALLOWED_NETWORKS +inet.allow_login ALLOWED_NETWORKS +inet.allow_ftp ALLOWED_NETWORKS +inet.allow_sshd ALL +inet.daemon_sshd yes..... +auth.users myckey +auth.userhome_mickey /home/mickey +auth.usershell_mickey /bin/tcsh +inet.services telnet login ftp +inet.allow telnet login ftp sshd +inet.allow_telnet ALLOWED_NETWORKS +inet.allow_login ALLOWED_NETWORKS +inet.allow_ftp ALLOWED_NETWORKS +inet.allow_sshd ALL +inet.daemon_sshd yes..... +auth.users myckey +auth.userhome_mickey /home/mickey +auth.usershell_mickey /bin/tcsh Config files 192.168., 192.135.30...... /home/MickeyMouseHome /bin/tcsh 192.168., 192.135.30...... /home/MickeyMouseHome /bin/tcsh XML profiles Profile Object inet auth /etc/services /etc/inetd.conf /etc/hosts.allow in.telnetd : 192.168., 192.135.30. in.rlogind : 192.168., 192.135.30. in.ftpd : 192.168., 192.135.30. sshd : ALL /etc/hosts.allow in.telnetd : 192.168., 192.135.30. in.rlogind : 192.168., 192.135.30. in.ftpd : 192.168., 192.135.30. sshd : ALL /etc/shadow /etc/group /etc/passwd.... mickey:x:999:20::/home/Mickey:/bin/tcsh.... /etc/passwd.... mickey:x:999:20::/home/Mickey:/bin/tcsh....

7 German Cancio – WP4-install LCFG HOW-TO - n° 6 LCFG configuration (I) u Most of the configuration data are common for a category of nodes (e.g. diskservers, computing nodes) and only a few are node-specific (e.g. hostname, IP-address)  Using the cpp preprocessor it is possible to build a hierarchical structure of config files containing directives like #define, #include, #ifdef, comments with /* */, etc... u The configuration of a typical LCFG node looks like this: #define HOSTNAME pc239 /* Host specific definitions */ #include "site.h" /* Site specific definitions */ #include "linuxdef.h" /* Common linux resources */ #include "client.h" /* LCFG client specific resources */

8 German Cancio – WP4-install LCFG HOW-TO - n° 7 LCFG configuration (II) From "site.h" #define LCFGSRV grid01 #define URL_SERVER_CONFIG http://grid01/lcfg #define LOCALDOMAIN.lnl.infn.it #define DEFAULT_NAMESERVERS 192.135.30.245 [...] From "linuxdef.h" update.interfaces eth0 update.hostname_eth0 HOSTNAME update.netmask_eth0 NETMASK [...] From "client.h" update.disks hda update.partitions_hda hda1 hda2 update.pdetails_hda1 free / update.pdetails_hda2 128 swap auth.users mickey auth.usercomment_mickey Mickey Mouse auth.userhome_mickey /home/Mickey [...]

9 German Cancio – WP4-install LCFG HOW-TO - n° 8 LCFG: configuration changes u Server-side: when the config files are modified, a tool (mkxprof) recreates the new xml profile for all the nodes affected by the changes n this can be done manually or with a daemon periodically checking for config changes and calling mkxprof n mkxprof can notify via UDP the nodes affected by the changes u Client-side: another tool (rdxprof) downloads the new profile from the server n usually activated by an LCFG component at boot n can be configured to work as s daemon periodically polling the server s daemon waiting for notifications s started by cron at predefined times

10 German Cancio – WP4-install LCFG HOW-TO - n° 9 LCFGng components for EDG usage

11 German Cancio – WP4-install LCFG HOW-TO - n° 10 LCFG: what’s a component? u Component == object u It's a Perl script (also shell scripts accepted for historic reasons) n We recommend to phase out shell components. n A backwards compatibility module allows to import old-style components without any modifications.  Each component provides a Configure() method invoked on startup or when configuration changes u A simple and typical component behaviour: n Started when notified of a configuration change n Loads its configuration (locally cached) n Configures the appropriate services, by translating config parameters into a traditional config file and reloading a service if necessary (e.g. restarting a init.d service).

12 German Cancio – WP4-install LCFG HOW-TO - n° 11 LCFG: custom components  LCFG provides components to manage the configuration of services of a machine: inet, auth, nfs, cron,... u Admins can build new custom components to configure and manage their own applications: n define your custom “resources” (configuration parameters) n Write a script containing standard methods with your custom code. n Include in your script a generic library, which contains the definition of common function used by all components (config loading, log, output,...) u For simple components usually just a few lines of code

13 German Cancio – WP4-install LCFG HOW-TO - n° 12 Writing LCFG components for EDG u Software written for EDG should be portable to whatever farm management system is used.  It is therefore recommended to use whenever possible, standard SysV procedures for managing services: init.d scripts and chkconfig.  LCFG should not be used for replacing existing SysV init.d functionality! u LCFG should be used for n retrieving configuration information from the CDB and recreate local config files Restarting services if needed via init.d scripts ( restart/reload ) Enabling/disabling SysV services to match the configuration DB’s contents (using chkconfig )

14 German Cancio – WP4-install LCFG HOW-TO - n° 13 LCFG component methods for EDG Only method to implement:  Configure(): Reconfigures the service and notifies running processes. u Methods not recommended for EDG, but available in LCFGng: n Start(), Stop(), Run(), Suspend(), Resume()

15 German Cancio – WP4-install LCFG HOW-TO - n° 14 EDG / LCFG component template (I) #!/usr/bin/perl -w package LCFG::MyComp; @ISA = qw(LCFG::Component); use strict; use LCFG::Component; use LCFG::Config; # EDG specific sub Configure($$@) { my ($self,$res) = @_; my $config=LCFG::Config->new($res); my $age=$config->getValue('/persons/John/age'); $self->Fail( "too young") unless ($age>18); } new LCFG::MyComp() -> Dispatch();

16 German Cancio – WP4-install LCFG HOW-TO - n° 15 LCFG component template (II)  Configure() method: # Do the configuration sub Configure($$@) { my ($self,$res) = @_; my $config=LCFG::Config->new($res); # do whatever is neccesary to reconfigure your service }

17 German Cancio – WP4-install LCFG HOW-TO - n° 16 LCFG component template (IV)  The specific part in the configure() method will usually contain three steps: 1. Access my resources via a special API (NVA API – next slide) my $config=NVA::Config->new(); my $arch=$config->getValue('/system/architecture’); $self->Fail (“not supported") unless ($arch eq ‘i386’); 2. Generate (or update) config file open (MYCONFIG,’/etc/myconfig’); … close(MYCONFIG) 3. Reload/restart a service if neccessary if ($changed) { system(‘/sbin/service myservice reload’); … }

18 German Cancio – WP4-install LCFG HOW-TO - n° 17 NVA API configuration access library (EDG only) New component configuration access library u This library allows true hierarchical configuration structure access on the client side u Implements a subset of the Node View Access API (v.1) n http://cern.ch/hep-proj-grid-fabric-config/documents/nva http://cern.ch/hep-proj-grid-fabric-config/documents/nva n Implemented only for Perl components. u Most popular methods: n $value=$config->getValue (‘/my/path/in/config’); #access value n $element=$config->getElement($path); #configuration element n while ($element->isNextElement()) { # iterations over element lists my $newel=$element->getNextElement();

19 German Cancio – WP4-install LCFG HOW-TO - n° 18 EDG relevant built-in standard functions  $self->Fail(@array) : prints out a [FAIL] message and exits  $self->Warn(@array): prints out [WARNING] message  $self->OK(@array): prints out [OK] message  $self->LogMessage(@array): Adds message to logfile (see also the LCFG/Component.pm file)

20 German Cancio – WP4-install LCFG HOW-TO - n° 19 Configuration information (I) Configuration information is stored on the LCFG server in two types of files: 1.The resource definition files (.def) 2.The normal.h & machine configuration files.

21 German Cancio – WP4-install LCFG HOW-TO - n° 20 Configuration information (II) 1. The.def files contain default resource information: mycomp.def /* EDG LCFG mycomponent: default resources */ /* schema version always=1 */ schema1 /* defined resources and defaults */ myconfig1 myconfig2defaultvalue2

22 German Cancio – WP4-install LCFG HOW-TO - n° 21 Configuration information (III) 2. The normal.h & machine config files, where the default configuration is enhanced/overwritten: mycomponent. mycomp.myconfig1whatevervalue mycomp.myconfig2whateverothervalue Some special resources have to be declared for including a component to be deployed: # add to profile (always needed) EXTRA(profile.components)mycomp # define XML profile version (always set to 1) profile.version_mycomp1 # start on boot time (if required) EXTRA(boot.services)mycomp

23 German Cancio – WP4-install LCFG HOW-TO - n° 22 Hierarchical configurations (I) u Sometimes, key-value pairs are not sufficient for the required configurations. n For example: arrays or lists u LCFG has a complex server side mechanism for mapping hierarchical structures into key-value pairs… u Table with person names, ages, and phone numbers (.def file) @persons age_$ phone_$ persons age_$ phone_$

24 German Cancio – WP4-install LCFG HOW-TO - n° 23 Hierarchical configurations (II) Now we want to add the following to the node config:  John, 35, 12346 and Phil, 21, 54321 The node config file will look like: mycomp.persons John Phil mycomp.age_John 35 mycomp.phone_John 12346 mycomp.age_Phil21 mycomp.phone_Phil54321 The /persons/John/age, /persons/John/phone, /persons/Phil/age, /persons/Phil/phone resources will be accessible to the client via the NVA API.

25 German Cancio – WP4-install LCFG HOW-TO - n° 24 Hierarchical configurations (III) The component accessing the info needs to do: my $personlist=$config->getElement(‘/persons’); while($personlist->isNextElement()) { my $person=$personlist->getNextElement(); my $phone=$config->getElement(‘/persons/’.$person.’/phone’); my $age=$config->getElement(‘/persons/’.$person.’/age’); print CONFIG “name: $i – age: $age – phone: $phone\n”; }

26 German Cancio – WP4-install LCFG HOW-TO - n° 25 Hierarchical Configurations (IV) u Note that there is no limit in the nesting of resources (lists of lists are possible as well as lists of lists of lists) n There are some examples (eg. demo NVA API component) n However it is complex using the mkxprof language. Release 3 developments will include integration with the ‘pan’ HLDL language.

27 German Cancio – WP4-install LCFG HOW-TO - n° 26 Some tips u Avoid dumping configuration files literally into the database @configlines configline_$ configlines01 02 03 04 05 … configline_01 FARM=MOOH_BAR configline_02MILK_NODE=COW_001... u This leads to some problems, eg. when you overwrite values for host specific values How do you know that configline_324 is still the line you wanted to change? u Rather use a template configuration file shipped with the component RPM n Substitute relevant entries in the template cf file n Use the built-in template processor for this (see next slide). u Keep explicit configuration information in the LCFG config files.

28 German Cancio – WP4-install LCFG HOW-TO - n° 27 Template processor u A template substitution processor allows for fast generation of config files u Special marked entries allow to substitute specific entries by LCFGng resources. u Example template file for resources in red: # # Myconfig configuration file # # directory where database management files are stored databaseDirectory = # directory where temporary files are stored tmpDataDirectory = # directory where lock files are stored lockDirectory = u The template processor is called using LCFG::Template::Substitute ( ‘/mypath/templatefile', ‘/mypath/myconfigfile', $fake, $res );

29 German Cancio – WP4-install LCFG HOW-TO - n° 28 Example (I) Edg-lcfg-syslog – configures /etc/syslog.conf.def file: @additions add_$ Additions add_$ Resources defined on server: syslog.additions monitoring kernel syslog.add_monitoring local3.* |/var/obj/tmp/monitor.fifo syslog.add_kernel kern.* /var/log/kernel.log

30 German Cancio – WP4-install LCFG HOW-TO - n° 29 Example (II) Component: Configure() method. First part: template generation sub Configure($$@) { my ($self,$res,@args)=@_; my $config=LCFG::Config->new($res); my $syslogconf='/etc/syslog.conf'; my $status = LCFG::Template::Substitute ( '/usr/lib/lcfg/conf/syslog/template', '/var/obj/conf/syslog/config', 0, $res ); unless (defined($status)) { $self->LogMessage($@); $self->Fail( "failed to create config file (see logfile)"); }

31 German Cancio – WP4-install LCFG HOW-TO - n° 30 Example (III) Component: Configure() method. Second part: add missing resources # extra values from 'additions', using NVA API my $additions=$config->getElement('/additions'); my @add_array=(); while ($additions->isNextElement()) { my $add=$additions->getNextElement(); my $add_el=$config->getElement('/additions/'.$add.'/add'); push(@add_array,$add_el->getValue()); } if (scalar (@add_array)) { open (CFG, '>>/var/obj/conf/syslog/config') || $self->Fail('cannot open config file (see logfile)'); print CFG join("\n",@add_array)."\n"; close (CFG) || $self->Fail('cannot close config file (see logfile)'); }

32 German Cancio – WP4-install LCFG HOW-TO - n° 31 Example (IV) Component: Configure() method. Third part: copy config file, restart service # copy over to definitive location if files are different if (system("/usr/bin/cmp -s $syslogconf /var/obj/conf/syslog/config")){ $self->LogMessage("updating config file"); system('cp -f '.$syslogconf.' '.$syslogconf.'.old'); system('cp -f /var/obj/conf/syslog/config '.$syslogconf) && $self->Fail("copying template to $syslogconf: ". $?); # restart service if (system('/sbin/service syslog restart')) { $self->Fail('init.d syslog restart failed: '. $?); } } return 1; #OK }

33 German Cancio – WP4-install LCFG HOW-TO - n° 32 Packaging components u In order to generate components in RPM, SRPM, and tar format, the component has to be packaged according to some guidelines. n Read the COMPONENTS-HOWTO for details and links u If you want to test/develop/package your components without CVS access, you should copy the following from fabric_mgt/edg-lcfg: n Makefile edg-lcfg-config directory u Create a directory below the makefile, called edg-lcfg- u Populate it with the following files (take eg. edg-lcfg-syslog as template) n CHANGES, ChangeLog, LICENSE, MAINTAINER, Makefile, README, README.BUILD, config.mk, specfile,.cin,.def.cin,.pod.cin u Use the make ‘devpack’ and ‘devrpm’ targets for generating the tar and RPM packages, respectively. u Once your package is ready, contact WP4 for getting it added to CVS.

34 German Cancio – WP4-install LCFG HOW-TO - n° 33 Documentation and links u LCFGng ‘out of the box’: http://www.lcfg.orghttp://www.lcfg.org u EDG components and extensions: Check on the EDG CVS repository, http://datagrid.in2p3.fr -> fabric_mgt/edg-lcfg http://datagrid.in2p3.fr u EDG configuration access API (NVA API v1.0): n http://cern.ch/hep-proj-grid-fabric-config/documents/nva http://cern.ch/hep-proj-grid-fabric-config/documents/nva n edg-lcfg-nvaapi library module at the EDG CVS repository u Documentation (HOW-TO): n http://datagrid.in2p3.fr/cgi-bin/cvsweb.cgi/fabric_mgt/edg- lcfg/COMPONENTS-HOWTO http://datagrid.in2p3.fr/cgi-bin/cvsweb.cgi/fabric_mgt/edg- lcfg/COMPONENTS-HOWTO u WP4-install homepage: http://cern.ch/wp4-installhttp://cern.ch/wp4-install


Download ppt "Partner Logo German Cancio – WP4-install LCFG HOW-TO - n° 1 How to write LCFGng components for EDG 10/2002"

Similar presentations


Ads by Google