How to Install typesetter cms on centos 8
- 00:44 rpm -q centos-release
- 00:58 wget https://github.com/Typesetter/Typesetter/archive/master.zip
- 01:16 unzip master.zip
- 01:30 mv Typesetter-master/ /var/www/typesetter
- 01:49 chown -R apache:apache /var/www/typesetter
- 02:07 chmod -R 755 /var/www/typesetter/
- 02:25 vim /etc/httpd/conf.d/type.conf
- 03:28 systemctl restart httpd
How to Install typesetter cms on centos 8
Typesetter was designed to be an easy to use, but lightweight and fully functional content management system. The user can use the integrated admin interface that allows them to instantly see page edits and configuration changes in one window. It enables the user to build and manage feature rich websites. Since it has an inbuilt flat file storage, it doesn't require a database to store data.This tutorial covers the installation procedure of Typesetter CMS on CentOS 8.
Installation process :
Check the CentOS version by using the following command
[root@linuxhelp ~]# rpm -q centos-release
centos-release-8.1-1.1911.0.8.el8.x86_64
Before the installation, you need to download the typesetter installation package.
[root@linuxhelp ~]# wget https://github.com/Typesetter/Typesetter/archive/master.zip
--2020-09-04 15:59:04-- https://github.com/Typesetter/Typesetter/archive/master.zip
Resolving github.com (github.com)... 13.234.176.102
Connecting to github.com (github.com)|13.234.176.102|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/Typesetter/Typesetter/zip/master [following]
--2020-09-04 15:59:05-- https://codeload.github.com/Typesetter/Typesetter/zip/master
Resolving codeload.github.com (codeload.github.com)... 13.127.152.42
Connecting to codeload.github.com (codeload.github.com)|13.127.152.42|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’
master.zip [ <=> ] 6.42M 897KB/s in 7.0s
2020-09-04 15:59:13 (936 KB/s) - ‘master.zip’ saved [6728964]
Once the download is completed, extract the typesetter by using the following command
[root@linuxhelp ~]# unzip master.zip
Archive: master.zip
301ed9f963f4a23541b92f162b7f4522154bbd4a
creating: Typesetter-master/
creating: Typesetter-master/.easymin/
inflating: Typesetter-master/.easymin/ignore_prefixes
extracting: Typesetter-master/.easymin/ignore_types
inflating: Typesetter-master/.easymin/noshrink_paths
.
.
inflating: Typesetter-master/themes/Three_point_5/images/shore.jpg
inflating: Typesetter-master/themes/Three_point_5/images/wheel.jpg
extracting: Typesetter-master/themes/Three_point_5/screenshot.png
inflating: Typesetter-master/themes/Three_point_5/settings.php
inflating: Typesetter-master/themes/Three_point_5/template.php
inflating: Typesetter-master/themes/index.html
inflating: Typesetter-master/web.config
Move the typesetter directory to apache root directory
[root@linuxhelp ~]# mv Typesetter-master/ /var/www/typesetter
Set the ownership and permission for typesetter CMS
[root@linuxhelp ~]# chown -R apache:apache /var/www/typesetter
[root@linuxhelp ~]# chmod -R 755 /var/www/typesetter/
Configure the virtualhost for typesetter CMS
[root@linuxhelp ~]# vim /etc/httpd/conf.d/type.conf
<virtualhost *:80>
Servername www.linuxhelp1.com
Documentroot /var/www/typesetter
<directory /var/www/typesetter>
allowoverride all
allow from all
</directory>
</virtualhost>
Once all setup is completed restart the Apache service
[root@linuxhelp ~]# systemctl restart httpd
Once you have done it, go to the browser and enter the domain name.
This is the requirement for typesetter cms
Configure the admin credential’s
Installation process is completed
This is the dashboard of typesetter cms
With this the installation of typesetter cms comes to end
Comments ( 0 )
No comments available