Tutorial on installing phpMyAdmin under Linux centos7

Tutorial on installing phpMyAdmin under Linux centos7

yum install httpd php mariadb-server –y

Record some problems encountered when installing phpMyAdmin after setting up the lamp operating environment

1. Download the phpMyAdmin compressed package from the official website

wget -c https://files.phpmyadmin.net/phpMyAdmin/4.9.3/phpMyAdmin-4.9.3-all-languages.tar.gz

2. Unzip to /var/www/html/

tar -zxvf phpMyAdmin-4.9.3-all-languages.tar.gz -C /var/www/html/

3. Rename

cd /var/www/html/
mv phpMyAdmin-4.9.3-all-languages ​​phpMyAdmin

This step can usually be accessed normally through localhost/phpMyAdmin, but sometimes there are always other problems.

4. Go to the phpMyAdmin installation directory and copy the simple configuration file config.sample.inc.php of phpmyadmin as the default configuration file config.inc.php

Copying Files

cp config.sample.inc.php config.inc.php

Editing the Configuration File

vim config.inc.php

The configuration file now requires a password phrase, find

$cfg['blowfish_secret'] = ''; //Add a few characters here at random. If it is too short, there will be an error message.
$cfg['Servers'][$i]['auth_type'] = 'cookie'; //The default is fine here. $cfg['Servers'][$i]['host'] = 'localhost'; //You can change it to your own IP address or domain name. It doesn't matter if you don't change it.

5. If an error message appears

The variable $cfg['TempDir'] (./tmp/) is not accessible. phpMyAdmin cannot cache template files, so it will run slowly.

Create a new tmp folder in the phpMyAdmin directory

mkdir tmp
chmod 777 tmp

6. It may prompt that some extensions are missing

Install the PHP database extension package

yum install php-mysql

Install the package that supports the multibyte string extension

yum install php-mbstring -y

Install the package that supports the multi-encryption extension

yum install php-mcrypt –y

7. Other computers need to open port 80 or close the firewall to access

Open port 80

firewall-cmd --zone=public --add-port=80/tcp --permanent
//--zone scope, --add-port=80/tcp add port/protocol, --permanent permanent effect

Restart the firewall

systemctl restart firewalld

Or just turn off the firewall

Check the firewall status

systemctl status firewalld

Stop the firewall

systemctl stop firewalld

Turn off Enable Firewall

systemctl disable firewalld

8. If the Forbidden prompt appears, it may be blocked by selinux.

Check if SELinux is running

gettenforce

in the case of

enforcing //Enforcement mode, domain/type will be restricted permissive //Permissive mode, there will be warnings but no restrictions domain/type disabled //Disabled state, not running

settenforce 0 //Convert to permissive mode, which is equivalent to temporarily shutting down SELinuxx settenforce 1 //Convert to mandatory mode

Set SELINUX=disables to disable it from booting

vim /etc/selinux/config

Summarize

The above is the tutorial on how to install phpMyAdmin under Linux centos7 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Aliyun Linux compile and install php7.3 tengine2.3.2 mysql8.0 redis5 process detailed explanation
  • Detailed tutorial on installing phpstorm2020 under linux mint including JDK part
  • Detailed steps to install xml extension in php under linux
  • Detailed explanation of how to install PHP7 on Linux
  • Install PHP7.3 version under Linux system

<<:  WeChat applet calculator example

>>:  Detailed explanation of the role and working principle of MySQL master-slave replication

Recommend

Linux virtual memory settings tutorial and practice

What is Virtual Memory? First, I will directly qu...

A possible bug when MySQL executes the sum function on the window function

When using MySql's window function to collect...

Advanced crawler - Use of Scrapy_splash component for JS automatic rendering

Table of contents 1. What is scrapy_splash? 2. Th...

Centos7.5 configuration java environment installation tomcat explanation

Tomcat is a web server software based on Java lan...

SQL Server database error 5123 solution

Because I have a database tutorial based on SQL S...

Detailed steps to configure my.ini for mysql5.7 and above

There is no data directory, my-default.ini and my...

The difference between KEY, PRIMARY KEY, UNIQUE KEY, and INDEX in MySQL

The problem raised in the title can be broken dow...

Use PSSH to batch manage Linux servers

pssh is an open source software implemented in Py...

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running ...

Detailed explanation of long transaction examples in MySQL

Preface: The "Getting Started with MySQL&quo...

MySQL spatial data storage and functions

Table of contents 1. Data Type 1. What is MySQL s...

Detailed tutorial on deploying Apollo custom environment with docker-compose

Table of contents What is the Apollo Configuratio...