在Ubuntu 20.04 LTS Focal Fossa上安装Matomo
步骤1.首先,通过apt
在终端中运行以下以下命令,确保所有系统软件包都是最新的。
sudo apt update
sudo apt upgrade
步骤2.安装LAMP服务器。
需要Ubuntu 20.04 LAMP服务器。如果您没有安装LAMP,则可以在本站搜一搜LAMP按照我们的教程进行操作。
步骤3.在Ubuntu 20.04上安装Matomo。
运行以下命令以在服务器上下载最新版本的Matomo:
wget https://builds.matomo.org/matomo-latest.zip
将Matomo存档解压缩到服务器上的文档根目录:
sudo unzip matomo-latest.zip -d /var/www/
我们将需要更改一些文件夹权限:
sudo chown www-data:www-data /var/www/matomo/ -R
步骤4.为Matomo配置MariaDB。
默认情况下,不会对MariaDB进行加固。您可以使用mysql_secure_installation
脚本保护MariaDB 。您应该仔细阅读每个步骤,并在每个步骤下面仔细进行操作,这将设置root密码,删除匿名用户,禁止远程root登录以及删除测试数据库和对安全MariaDB的访问权限:
mysql_secure_installation
像这样配置它:
- Set root password? [Y/n] y - Remove anonymous users? [Y/n] y - Disallow root login remotely? [Y/n] y - Remove test database and access to it? [Y/n] y - Reload privilege tables now? [Y/n] y
接下来,我们将需要登录MariaDB控制台并为Matomo创建数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此输入您的MariaDB根密码,然后按Enter。登录数据库服务器后,您需要创建一个数据库以进行Matomo安装:
create database matomo; create user matomouser@localhost identified by 'your-strong-password'; grant all privileges on matomo.* to matomouser@localhost; flush privileges; exit;
步骤5.配置Apache。
现在,我们在目录中创建虚拟主机配置文件:/etc/apache2/sites-available/
sudo nano /etc/apache2/sites-available/matomo.conf
<VirtualHost *:80> ServerAdmin webmaster@localhost ServerName analytics.yundongfang.com DocumentRoot /var/www/matomo/ <Directory /var/www/matomo> DirectoryIndex index.php Options FollowSymLinks AllowOverride All Require all granted </Directory> <Files "console"> Options None Require all denied </Files> <Directory /var/www/matomo/misc/user> Options None Require all granted </Directory> <Directory /var/www/matomo/misc> Options None Require all denied </Directory> <Directory /var/www/matomo/vendor> Options None Require all denied </Directory> ErrorLog ${APACHE_LOG_DIR}/matomo_error.log CustomLog ${APACHE_LOG_DIR}/matomo_access.log combined </VirtualHost>
重新启动Apache Web服务器以使更改生效:
sudo a2ensite matomo.conf sudo systemctl reload apache2
步骤6.设置Https Apache。
首先,安装Certbot Apache插件:
sudo apt install python3-certbot-apache
然后,运行以下命令以获取并安装TLS证书:
sudo certbot --apache --agree-tos --redirect --hsts --staple-ocsp --admin@idroot.us -d analytics.idroot.us
第7步。访问Matomo Web Analytics。
默认情况下,Matomo将在HTTP端口80上可用。打开您喜欢的浏览器,然后浏览并完成所需的步骤以完成安装。如果您使用的是防火墙,请打开端口80以启用对控制面板的访问。https://analytics.yundongfang.com
恭喜你!您已经成功安装了Matomo。感谢您使用本教程在Ubuntu 20.04 LTS Focal Fossa上安装Matomo开源Web分析。如需其他帮助或有用信息,建议您检查Matomo官方网站。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/Yun41429.html