Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Create log directory

Attila Levente EGYEDI edited this page Apr 5, 2017 · 1 revision

There are several components of the CEDAR system, and all of them use logging.

We will collect the majority of logs in a common folder, in order to have a complete view of the system.

Create a common folder for loging:

mkdir ${CEDAR_HOME}log

Create subfolders for the components that will not do this by themselves:

mkdir ${CEDAR_HOME}log/cedar-auth-server
mkdir ${CEDAR_HOME}log/cedar-template-editor
mkdir ${CEDAR_HOME}log/mongodb
mkdir ${CEDAR_HOME}log/nginx

The other subfolders will be created by the java microservices

If you are on *nix system, change the owner of this log folder:

sudo chown -R cedar ${CEDAR_HOME}
Clone this wiki locally