Monday, February 14, 2022

How To Install Pydio Cells File Sharing on Rocky Linux 8.5

 in This Tutorial you will Learn" How To Install Pydio Cells File Sharing on Rocky Linux 8.5"

Pydio Cells is self-hosted Document Sharing & Collaboration software for organizations that need advanced sharing without security trade-offs.

Homepage - https://pydio.com/
_________________________________________________________________________________________
Server - Os:  Rocky Linux 8.5  64Bit      | IP -192.168.1.60        |Hostname - server.yourdomain.com
_________________________________________________________________________________________
cat /etc/system-release ; hostname ; hostname -I ; sestatus ; dnf groupinstall "Development Tools" -y
dnf install @mariadb unzip wget -y
systemctl start mariadb ; systemctl enable mariadb ; mysql_secure_installation
mysql -u root -p
CREATE DATABASE cells;
CREATE USER 'pydio'@'localhost' IDENTIFIED BY 'StrongPassw0rd';
GRANT ALL PRIVILEGES ON cells.* to 'pydio'@'localhost';
FLUSH PRIVILEGES;
EXIT

useradd -m -s /bin/bash pydio ; mkdir -p /opt/pydio/bin /var/cells/certs ; chown -R pydio: /opt/pydio /var/cells

sudo tee -a /etc/profile.d/cells-env.sh << EOF
export CELLS_WORKING_DIR=/var/cells
export CADDYPATH=/var/cells/certs
EOF

chmod 0755 /etc/profile.d/cells-env.sh
su - pydio
wget https://download.pydio.com/latest/cells/release/{latest}/linux-amd64/pydio-cells-{latest}-linux-amd64.zip
unzip -q pydio-cells-{latest}-linux-amd64.zip ; mv cells /opt/pydio/bin/cells
chmod a+x /opt/pydio/bin/cells
exit
ln -s /opt/pydio/bin/cells /usr/local/bin/cells
cells  version
ulimit -n 8192
su - pydio
cells configure
https://127.0.0.1:8080/
__________________________________________________________________________________________



No comments:

Post a Comment