在ubuntu 20.04 lts focal fossa上
步骤1.首先,通过apt
在终端中运行以下以下命令,确保所有系统软件包都是最新的。
sudo apt update
sudo apt upgrade
步骤2.安装lamp堆栈。
需要ubuntu 20.04 lamp服务器。
步骤3.在ubuntu 20.04上安装typo3。
现在我们从他们的下载最新版本的typo3 :
curl -l -o typo3_src.tgz https://get.typo3.org/10.4.9 tar -xvzf typo3_src.tgz mv typo3_src-10.4.9 /var/www/html/typo3
我们将需要更改一些文件夹权限:
sudo chown -r www-data:www-data /var/www/html/typo3 sudo chmod -r 775 /var/www/html/typo3
步骤4.为typo3配置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控制台并为typo3创建一个数据库。运行以下命令:
mysql -u root -p
这将提示您输入密码,因此输入您的mariadb根密码,然后按enter。登录到数据库服务器后,需要创建用于typo3安装的数据库:
create database typo3db; create user 'typo3user'@'localhost' identified by 'y0ur-passwd'; grant all on typo3db.* to 'typo3user'@'localhost' identified by 'user_password_here' with grant option; flush privileges; exit;
步骤5.为typo3配置apache。
创建一个apache虚拟主机配置文件来承载typo3 cms。例如,在虚拟服务器上创建一个名为’ ‘的新apache配置文件:typo.conf
touch /etc/apache2/sites-available/typo.conf ln -s /etc/apache2/sites-available/typo.conf /etc/apache2/sites-enabled/typo.conf nano /etc/apache2/sites-available/typo.conf
添加以下行:
*:80>
serveradmin admin@example.com
documentroot /var/www/html/typo3
servername your-domain.com
serveralias www.example.com
/var/www/html/typo3/>
options followsymlinks
allowoverride all
order allow,deny
allow from all
errorlog /var/log/apache2/your-domain.com-error_log
customlog /var/log/apache2/your-domain.com-access_log common
现在,我们可以重新启动apache web服务器,以便进行更改:
sudo a2ensite typo3.conf sudo a2enmod rewrite sudo systemctl restart apache2
步骤6.设置https。
我们应该在nextcloud上启用安全的https连接。我们可以从let’s encrypt获得免费的tls证书。从ubuntu 20.04存储库安装let’s encrypt客户端(certbot):
sudo apt install certbot python3-certbot-apache
接下来,运行以下命令以使用apache插件获取免费的tls证书:
sudo certbot --apache --agree-tos --redirect --staple-ocsp --email you@example.com -d example.com
如果测试成功,请重新加载apache以使更改生效:
sudo apache2ctl -t sudo systemctl reload apache2
步骤7.访问typo3 cms。
默认情况下,typo3 cms将在http端口80上可用。打开您喜欢的浏览器,然后浏览至或完成所需的步骤以完成安装。如果您使用的是防火墙,请打开端口80以启用对控制面板的访问。https://your-domain.com/
https://server-ip-address/
恭喜你!您已成功安装typo3。感谢您使用本教程在ubuntu 20.04 lts focal fossa系统上安装typo3。如需更多帮助或有用信息,建议您检查。
原创文章,作者:校长,如若转载,请注明出处:https://www.yundongfang.com/yun40561.html