config(5)


NAME

   config - Configuration file.

DESCRIPTION

   A  configuration  file contains values for configuration parameters for
   the applications in the system. The erl command-line  argument  -config
   Name  tells  the  system  to  use data in the system configuration file
   Name.config.

   Configuration parameter values in the configuration file  override  the
   values in the application resource files (see app(5). The values in the
   configuration  file  can  be  overridden  by  command-line  flags  (see
   erts:erl(1).

   The  value  of  a  configuration  parameter  is  retrieved  by  calling
   application:get_env/1,2.

FILE SYNTAX

   The configuration file is to be called Name.config, where Name  is  any
   name.

   File  .config  contains  a  single  Erlang  term  and has the following
   syntax:

   [{Application1, [{Par11, Val11}, ...]},
    ...
    {ApplicationN, [{ParN1, ValN1}, ...]}].

     Application = atom():
       Application name.

     Par = atom():
       Name of a configuration parameter.

     Val = term():
       Value of a configuration parameter.

SYS.CONFIG

   When starting Erlang in embedded mode, it is assumed that  exactly  one
   system configuration file is used, named sys.config. This file is to be
   located in $ROOT/releases/Vsn,  where  $ROOT  is  the  Erlang/OTP  root
   installation directory and Vsn is the release version.

   Release  handling  relies  on  this  assumption.  When installing a new
   release version, the new sys.config is read  and  used  to  update  the
   application configurations.

   This means that specifying another .config file, or more .config files,
   leads to inconsistent update of application configurations.  Therefore,
   in  Erlang 5.4/OTP R10B, the syntax of sys.config was extended to allow
   pointing out other .config files:

   [{Application, [{Par, Val}]} | File].

     File = string():
       Name of another .config file. Extension .config can be omitted.  It
       is  recommended  to use absolute paths. A relative path is relative
       the current working directory of the emulator.

   When  traversing  the  contents  of  sys.config  and  a   filename   is
   encountered,  its  contents are read and merged with the result so far.
   When an application configuration tuple {Application, Env} is found, it
   is merged with the result so far. Merging means that new parameters are
   added and existing parameter values overwritten.

   Example:

   sys.config:

   [{myapp,[{par1,val1},{par2,val2}]},
    "/home/user/myconfig"].

   myconfig.config:

   [{myapp,[{par2,val3},{par3,val4}]}].

   This yields the following environment for myapp:

   [{par1,val1},{par2,val3},{par3,val4}]

   The behavior if a file specified in sys.config does not  exist,  or  is
   erroneous,  is  backwards  compatible. Starting the runtime system will
   fail. Installing a new release version will  not  fail,  but  an  error
   message is returned and the erroneous file is ignored.

SEE ALSO

   app(5), erts:erl(1), OTP Design Principles





Opportunity


Personal Opportunity - Free software gives you access to billions of dollars of software at no cost. Use this software for your business, personal use or to develop a profitable skill. Access to source code provides access to a level of capabilities/information that companies protect though copyrights. Open source is a core component of the Internet and it is available to you. Leverage the billions of dollars in resources and capabilities to build a career, establish a business or change the world. The potential is endless for those who understand the opportunity.

Business Opportunity - Goldman Sachs, IBM and countless large corporations are leveraging open source to reduce costs, develop products and increase their bottom lines. Learn what these companies know about open source and how open source can give you the advantage.





Free Software


Free Software provides computer programs and capabilities at no cost but more importantly, it provides the freedom to run, edit, contribute to, and share the software. The importance of free software is a matter of access, not price. Software at no cost is a benefit but ownership rights to the software and source code is far more significant.


Free Office Software - The Libre Office suite provides top desktop productivity tools for free. This includes, a word processor, spreadsheet, presentation engine, drawing and flowcharting, database and math applications. Libre Office is available for Linux or Windows.





Free Books


The Free Books Library is a collection of thousands of the most popular public domain books in an online readable format. The collection includes great classical literature and more recent works where the U.S. copyright has expired. These books are yours to read and use without restrictions.


Source Code - Want to change a program or know how it works? Open Source provides the source code for its programs so that anyone can use, modify or learn how to write those programs themselves. Visit the GNU source code repositories to download the source.





Education


Study at Harvard, Stanford or MIT - Open edX provides free online courses from Harvard, MIT, Columbia, UC Berkeley and other top Universities. Hundreds of courses for almost all major subjects and course levels. Open edx also offers some paid courses and selected certifications.


Linux Manual Pages - A man or manual page is a form of software documentation found on Linux/Unix operating systems. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.