Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
compose.libre.sh
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ecobytes
compose.libre.sh
Commits
13b022bc
Commit
13b022bc
authored
7 years ago
by
JꙨdцӍoηҬ
Committed by
Pierre Ozoux
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add Linux instructions
parent
b34211c1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
INSTALL_LINUX.md
+89
-0
89 additions, 0 deletions
INSTALL_LINUX.md
with
89 additions
and
0 deletions
INSTALL_LINUX.md
0 → 100644
+
89
−
0
View file @
13b022bc
# Instructions to install libre.sh on linux with Systemd
## Recommendation
-
Systemd (debian 8 or debian 9, CentOS 7 ...)
# Installation
Where basicly reproduce what the user_data do for us.
as root
# configure sshd
Don't forget to create the user core and adding your ssh key before
You could also remove AllowUsers core or/and change the username.
> cat > /etc/ssh/sshd_config <<EOF
UsePrivilegeSeparation sandbox
Subsystem sftp internal-sftp
PermitRootLogin no
AllowUsers core
PasswordAuthentication no
ChallengeResponseAuthentication no
EOF
> chmod 600 /etc/ssh/sshd_config
> systemctl restart sshd
# add kernel parameter
> cat > /etc/sysctl.d/libresh.conf <<EOF
fs.aio-max-nr=1048576
vm.max_map_count=262144
EOF
> chmod 644 /etc/sysctl.d/libresh.conf
> sysctl -p
# define Localhost
> cat > /etc/hosts <<EOF
127.
0.0.1 localhost
255.
255.255.255 broadcasthost
::1 localhost
EOF
# define envrionment
> cat > /etc/environment <<EOF
NAMECHEAP_URL="namecheap.com"
NAMECHEAP_API_USER="pierreo"
NAMECHEAP_API_KEY=
IP="curl -s http://icanhazip.com/"
FirstName="Pierre"
LastName="Ozoux"
Address=""
PostalCode=""
Country="Portugal"
Phone="+351.967184553"
EmailAddress="pierre@ozoux.net"
City="Lisbon"
CountryCode="PT"
BACKUP_DESTINATION=root@xxxxx:port
MAIL_USER=
MAIL_PASS=
MAIL_HOST=mail.indie.host
MAIL_PORT=587
EOF
# install docker-compose
*Remark I did a variante to find the last version of DockerCompose and download it*
> mkdir -p /opt/bin &&\
> dockerComposeVersion=$(curl -s https://api.github.com/repos/docker/compose/releases/latest|grep tag_name|cut -d'"' -f4) &&\
> curl -L https://github.com/docker/compose/releases/download/$dockerComposeVersion/docker-compose-`uname -s`-`uname -m` > /opt/bin/docker-compose &&\
> chmod +x /opt/bin/docker-compose
# install Libre.sh
> git clone https://github.com/indiehosters/libre.sh.git /libre.sh &&\
> mkdir /{data,system} &&\
> mkdir /data/trash &&\
> cp /libre.sh/unit-files/* /etc/systemd/system && systemctl daemon-reload &&\
> systemctl enable web-net.service &&\
> systemctl start web-net.service &&\
> cp /libre.sh/utils/* /opt/bin/
# add /opt/bin path
> cat > /etc/profile.d/libre.sh <<EOF
export PATH=$PATH:/opt/bin
EOF
chmod 644 /etc/profile.d/libre.sh
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment