Figure server built bed: Chevereto installation tutorial

Related presentations

chevereto is currently one of the best view of the bed. Function is also very powerful. The difference between its free version and paid version, the free version is more than a hard disk expansion, social sharing features and technical support. Hard disk expansion means that you can sftp, etc. to upload files stored on other servers. Free enough to use. Chevereto simple installation, support Chinese.

Official website : https://chevereto.com/

DEMO : https://demo.chevereto.com/

Blog link : https://www.iamzlt.com/?p=69

Installation Environment

Environmental requirements:
Apache/Nginx

PHP 5.5+

MySQL 5.0+

The installation environment:

CentOS 7 mysql5 PHP-7.1.30 apache2.4.6

Mounting

Before you install, create the relevant database.
#mysql -uroot -p
create database Chevereto

First, by mounting ZIP

Click here to enter the Github project address for more information.

You can use the following code can be downloaded in the server project.

#git clone https://github.com/Chevereto/Chevereto-Free

Git is a distributed version control system open source, can be effective, high-speed processing from very small to very large version of the project management, is the most widely used version management tool.
If you do not git, free to download:

#yum install git -y

Using unizp Chevereto-Freeextract the compressed files to / www / html in. Enter the directory on the server, create a settings.php file in the app folder.

#touch settings.php

Open the appropriate directory location from your browser. It will prompt some folders No read and write permissions.

Enter directory folder on the server. The permissions prompt the relevant directory can be modified, or all files can be modified by what method.

#chmod -R 775 ./*

At the same time the owner of the file to be modified

#chown -R apach:apache ./*

Once again open the relevant directory location in the browser, maybe there will be 404, suggesting / install / was not found on this server.

Back to the server, enter / etc / httpd / conf, the httpd.conf file to make the appropriate changes.

If different httpd versions, no catalog, available find / -name httpd.confto find directory location.

Add the following code in the file:

<Directory /var/www/html/Chevereto> //var/www/html/~为Chevereto路径位置,按自己的路径为准。
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>

:/wqSave and exit, and restart the httpd service.

#service httpd restart

Enter the relevant directory in your browser, fill in the user and database information can be.

Second, the installation file by installer.php

Official website address: chevereto.com/get-started

Back to the server, enter / etc / httpd / conf, the httpd.conf file to make the appropriate changes.

Add the following code in the file:

<Directory /var/www/html/Chevereto> //var/www/html/~为Chevereto路径位置,按自己的路径为准。
AllowOverride All
Order allow,deny
Allow from all
Require all granted
</Directory>

:/wqSave and exit, and restart the httpd service.

#service httpd restart

Install.php download the file to the server, under / var / www / html / ***, and directory and file permissions to 775 in the interface.

#chmod 775  Chevereto //以自己的目录为准
#cd Chevereto
#chmod 755 installer.php

Enter the relevant path in the browser prompts to download user registration, fill in the database information and other operations can be.

Settings

After installed and configured, you can enter Chevereto dashboard related settings. Can set the relevant Logo, title and other general settings for the home page, you can also call the API, or insertion of CSS styles.

Micro-channel public number:

Published 24 original articles · won praise 7 · views 1894

Guess you like

Origin blog.csdn.net/weixin_43426647/article/details/105328153