Linux serverNETWORK ADMINISTRATIONS

roundcube sur centos7

systemctl restart mariadb
mysql_secure_installation
mysql -u root -p
create database roundcube;
use roundcube;
create user roundcube@localhost identified by ‘passer’;
grant all privileges on roundcube.* to roundcube@localhost;
flush privileges;
exit
cd /home/mbaye/Téléchargement
tar -xzf roundcubemail-1.3.7-complete.tar.gz
cp -rf roundcubemail-1.3.7/* /usr/share/nginx/html/
rm -rf /usr/share/nginx/html/index.html
chown -R nginx:nginx /usr/share/nginx/html/*
chown -R nginx:nginx /var/lib/php/*
systemctl restart {named,dhcpd,nginx,dovecot,mariadb,php-fpm,postfix}

https://github.com/roundcube/roundcubemail/releases/tag/1.3.7

source

centos 7

Leave a Reply

Your email address will not be published. Required fields are marked *