Installation of KAGRA summary pages

ROOT set up

apt-get update
apt-get install openssh-server
systemctl start ssh

apt-get install apache2
a2enmod userdir
systemctl restart apache2

<IfModule mod_userdir.c>
...
    <Directory /home/*/public_html>
        AllowOverride FileInfo AuthConfig Limit Indexes AllowOverride
            ...
    </Directory>
</IfModule>

apt-get install lscsoft-archive-keyring

apt-get install \
    git \
    python-pip \
    python-virtualenv \
    python-nds2-client \
    lal-python \
    ldas-tools-framecpp-python \
    python-gwpy

Summary pages setup

python -m virtualenv ~/opt/summary-2.7 --system-site-packages

source ~/opt/summary-2.7/bin/activate

python -m pip install \
    "gwpy>=0.12.0"
    git+https://github.com/gwpy/gwsumm.git

After Installation

After the installation of gwpy and the daily-summary tools, TYo installed emacs.

> su 
> apt-get install emacs

After the installation of gwpy and the daily-summary tools, TY installed sudo and nfs-common. nfs-common is required we use nfs as the mount type on /etc/fstab.

> su -
> apt-get install sudo nfs-common
> emacs -nw /etc/fstab
k1nfs0:/export/users       /users       nfs            rw,bg,soft  0 0
> mount -a