This chapter describes the OS specific parts of OTP which relate to Solaris.
Solaris takes about 17 Mbyte of RAM on a system with 64 Mbyte of total RAM. This leaves about 47 Mbyte for the applications. If the system utilizes swapping, these figures cannot be improved because unnecessary daemon processes are swapped out. However, if swapping is disabled, or if the swap space is of limited resource in the system, it becomes necessary to kill off unnecessary daemon processes.
The disk space required by Solaris can be minimized by using the Core User support installation. It requires about 80 Mbyte of disk space. This installs only the minimum software required to boot and run Solaris. The disk space can be further reduced by deleting unnecessary individual files. However, unless disk space is a critical resource the effort required and the risks involved may not be justified.
This section is about installing an embedded system. The following topics are considered,
Creation of user and installation directory,
Installation of embedded system,
Configuration for automatic start at reboot,
Making a hardware watchdog available,
Changing permission for reboot,
Patches,
Configuration of the OS_Mon application.
Several of the procedures described below require expert knowledge of the Solaris 2 operating system. For most of them super user privilege is needed.
It is recommended that the Embedded Environment is run by an ordinary user, i.e. a user who does not have super user privileges.
Throughout this section we assume that the user name is
/export/home/otpuser
Furthermore, we assume that in the home directory of
/export/home/otpuser/otp
This directory is the installation directory of the Embedded Environment.
The procedure for installation of an embedded system does not differ from that of an ordinary system (see the Installation Guide), except for the following:
the (compressed) tape archive file should be extracted in the installation directory as defined above, and,
there is no need to link the start script to a
standard directory like
A true embedded system has to start when the system boots. This section accounts for the necessary configurations needed to achieve that.
The embedded system and all the applications will start
automatically if the script file shown below is added to the
S75otp.system
For further details on initialization (and termination) scripts, and naming thereof, see the Solaris documentation.
#!/bin/sh # # File name: S75otp.system # Purpose: Automatically starts Erlang and applications when the # system starts # Author: janne@erlang.ericsson.se # Resides in: /etc/rc3.d # if [ ! -d /usr/bin ] then # /usr not mounted exit fi killproc() { # kill the named process(es) pid=`/usr/bin/ps -e | /usr/bin/grep -w $1 | /usr/bin/sed -e 's/^ *//' -e 's/ .*//'` [ "$pid" != "" ] && kill $pid } # Start/stop processes required for Erlang case "$1" in 'start') # Start the Erlang emulator # su - otpuser -c "/export/home/otpuser/otp/bin/start" & ;; 'stop') killproc beam ;; *) echo "Usage: $0 { start | stop }" ;; esac
The file
/export/home/otpuser/otp
used in this section. The
Use of the
$SOME_PATH/erl_call -n Node init stop
In order to take Erlang down gracefully see the
The
For Solaris running on VME boards from Force Computers, there is a possibility to activate the onboard hardware watchdog, provided a VME bus driver is added to the operating system (see also Installation Problems below).
See also the
If the
HEART_COMMAND=/usr/sbin/reboot
the ownership and file permissions for
chown 0 /usr/sbin/reboot chmod 4755 /usr/sbin/reboot
See also the
When the Erlang runtime system is automatically started from the
TERM=sun
which should be added to the
For proper functioning of flushing file system data to disk on
Solaris 2.5.1, the version specific patch with number
103640-02 must be added to the operating system. There may be
other patches needed, see the release README file
The following four installation procedures require super user privilege.
Make a copy the Solaris standard configuration file for syslogd.
Make a copy the Solaris standard configuration
file for syslogd. This file is usually named
The file name of the copy must be
A simple way to do this is to issue the command
cp /etc/syslog.conf /etc/syslog.conf.ORIG
Make an Erlang specific configuration file for syslogd.
Make an edited copy of the back-up copy previously made.
The file name must be
The format of the configuration file is found in the
man page for
Usually a line is added which should state:
which types of information that will be supervised by Erlang,
the name of the file (actually a named pipe) that should receive the information.
If e.g. only information originating from the
unix-kernel should be supervised, the line should
begin with
After at least one tab-character, the line added
should contain the full name of the named pipe where
syslogd writes its information. The path must be the
same as for the
If the directory for the
kern.LEVEL /etc/syslog.otp
Check the file privileges of the configuration files.
The configuration files should have
A simple way to do this is to issue the commands
chmod 644 /etc/syslog.conf
chmod 644 /etc/syslog.conf.ORIG
chmod 644 /etc/syslog.conf.OTP
Note: If the
Modify file privileges and ownership of the mod_syslog utility.
The file privileges and ownership of the
The full name of the binary executable file is
derived from the position of the
/lib/os_mon-/priv/bin/mod_syslog]]>
Example: If the path to the otp-root is
The binary executable file must be owned by root,
have
A simple way to do this is to issue the commands
/lib/os_mon-/priv/bin/mod_syslog
chmod 4755 mod_syslog
chown root mod_syslog]]>
The following procedure does not require root privilege.
Ensure that the configuration parameters for the
Browse the application configuration file (do
not edit it). The full name of the application
configuration file is derived from the position of the
OS_Mon application if the file system by adding
The generic full name of the file is thus
/lib/os_mon-/ebin/os_mon.app.]]>
Example: If the path to the otp-root is
Ensure that the following configuration parameters are bound to the correct values.
If the values listed in the
Example: The following is an example of the contents of an application configuration file.
[{os_mon, [{start_os_sup, true}, {os_sup_own, "/etc"}, {os_sup_syslogconf, "/etc/syslog.conf"}, {os_sup_errortag, std_error}]}].
See also the
The hardware watchdog timer which is controlled by the
It is recommended that these lines be added to avoid the clash described, which may make it completely impossible to boot the system.
This section describes how an embedded system is started. There
are four programs involved, and they all normally reside in the
directory
In an embedded system there usually is no interactive shell.
However, it is possible for an operator to attach to the Erlang
system by giving the command
Basically, the procedure is as follows. The program
This program is called when the machine is started. It may
be modified or re-written to suit a special system. By
default, it must be called
The start program must call
This program should set static parameters and environment
variables such as
The
The following script illustrates the default behaviour of the program.
/dev/null 2>&1 &]]>
The following script illustrates a modification where the node
is given the name
/dev/null 2>&1 &]]>
If a diskless and/or read-only client node is about to start the
CLIENTDIR=$ROOTDIR/clients/clientname
START_ERL_DATA=${1:-$CLIENTDIR/bin/start_erl.data}
This program is used to start the emulator, but you will not
be connected to the shell.
Usage: run_erl pipe_dir/ log_dir "exec command [parameters ...]"
Where
In the
erlang.log.1
erlang.log.1, erlang.log.2
erlang.log.1, erlang.log.2, erlang.log.3
erlang.log.1, erlang.log.2, erlang.log.3, erlang.log.4
erlang.log.2, erlang.log.3, erlang.log.4, erlang.log.5
erlang.log.3, erlang.log.4, erlang.log.5, erlang.log.1
...
with the most recent logfile being the right most in each row of the above list. That is, the most recent file is the one with the highest number, or if there are already four files, the one before the skip.
When a logfile is opened (for appending or created) a time stamp is written to the file. If nothing has been written to the log files for 15 minutes, a record is inserted that says that we're still alive.
This program is used to attach to a running Erlang runtime
system, started with
Usage: to_erl [pipe_name | pipe_dir]
Where
To disconnect from the shell without exiting the Erlang
system, type
This program starts the Erlang emulator with parameters
The following script illustrates the behaviour of the program.
#!/bin/sh
#
# This program is called by run_erl. It starts
# the Erlang emulator and sets -boot and -config parameters.
# It should only be used at an embedded target system.
#
# Usage: start_erl RootDir RelDir DataFile [ErlFlags ...]
#
ROOTDIR=$1
shift
RELDIR=$1
shift
DataFile=$1
shift
ERTS_VSN=`awk '{print $1}' $DataFile`
VSN=`awk '{print $2}' $DataFile`
BINDIR=$ROOTDIR/erts-$ERTS_VSN/bin
EMU=beam
PROGNAME=`echo $0 | sed 's/.*\///'`
export EMU
export ROOTDIR
export BINDIR
export PROGNAME
export RELDIR
exec $BINDIR/erlexec -boot $RELDIR/$VSN/start -config $RELDIR/$VSN/sys $*
If a diskless and/or read-only client node with the
Assuming the same
exec $BINDIR/erlexec -boot $CLIENTDIR/bin/start \
-config $CLIENTDIR/bin/sys $*