-
Notifications
You must be signed in to change notification settings - Fork 41
Linux configuration
Sara Monzón edited this page Apr 1, 2019
·
13 revisions
There are two actions that are needed to prepare the prerequisites for iSkyLIMS on your Linux distribution:
- Install additional packages
- Create the user django
iSkyLIMS installation requires to install additional packages for compiling.
These will be used in case of CentOS to have Python version 3.6.x
Open a shell to execute the following commands:
For CentOS :
yum groupinstall “Development tools”
yum install zlib-devel bzip2-devel sqlite sqlite-devel openssl-devel
yum install git libcairo2 libcairo2-dev libpango1.0 libpango1.0-dev wget gnuplotFor Ubuntu :
apt-get update
apt-get install build-essential
apt-get install libghc-zlib-dev libbz2-dev sqlite3 libsqlite3-dev libssl1.0-dev
apt-get install git libcairo2 libcairo2-dev libpango1.0 libpango1.0-dev wget gnuplot
Move to the next step Create django User if the packages mention above are already installed in your system.
Create user ‘django’ and group ‘bioinfo’.
useradd django
groupadd bioinfoAdd django and apache user to bioinfo group.
For CentOS :
usermod -a -G bioinfo django
usermod -a -G bioinfo apacheFor Ubuntu :
usermod -a -G bioinfo django
usermod -a -G bioinfo www-data