CentOS 7配置phpMyAdmin及实现HTTPS服务

phpMyAdmin可以通过Web方式控制和操作MySQL数据库。通过phpMyAdmin 可以完全对数据库进行操作,例如建立、复制和删除数据等等。

配置环境

  • CentOS7 2台(IP1:192.168.70 ; IP2:192.168.1.71)

  • 关闭防火墙

  • 关闭selinux

  • 相关软件:

    php-5.4.16
    php-mbstring-5.4.16  
    httpd-2.4.6-45
    mariadb-server
    php-mysql-5.4.16
    phpMyAdmin-4.4.14.1-all-languages.zip
    mod_ssl-2.4.6-45

配置https环境(192.168.1.70)

#yum -y install httpd php php-mysql mariadb-server
#新建一个页面,测试PHP
# cat /var/www/html/index.php 
 <?php
  phpinfo();
 ?>
# systemctl start httpd.service
# systemctl start mariadb.service
# 查看端口(服务是否起来)
#ss -tnl    
#在浏览器中输入192.168.70查看生成的PHP测试页面

建立私有CA

CA:签证机构; RA:注册机构;CRL:证书吊销列表

证书申请及签署步骤: 生成证书申请请求-->RA校验-->CA签署-->获得证书

基于192.168.1.71

# cd /etc/pki/CA/
#(umask 077;openssl genrsa -out private/cakey.pem 2048)
# touch index.txt
# echo 01 > serial
#自签证书
# openssl req -x509 -key  private/cakey.pem -days 7300 -out /etc/pki/CA/cacert.pem
-----
Country Name (2 letter code) [XX]:CN
State or Province Name (full name) []:BEIJING
Locality Name (eg, city) [Default City]:BEIJING
Organization Name (eg, company) [Default Company Ltd]:linuxidc
Organizational Unit Name (eg, section) []:OPS
Common Name (eg, your name or your server's hostname) []:linuxidcz.com           
Email Address []:[email protected]
#后面的请求需要和这里的国家城市一致

生成证书签署请求

基于192.168.1.70

# mkdir /etc/httpd/ssl
# cd ssl
# (umask 077;openssl genrsa -out /etc/httpd/ssl/httpd.key 2048)
# openssl req -new -key /etc/httpd/ssl/httpd.key -out /etc/httpd/ssl/httpd.csr
#这里申请格式的国家城市应和上面的一致
#将证书发送给CA
# scp httpd.csr [email protected]:/tmp/

基于192.168.1.71

安装phpMyAdmin

phpMyAdmin - Error
The mbstring extension is missing. Please check your PHP configuration.没有安装mbstring, yum -y install php-mbstring即可。

 

然后重新访问网站就可以进入 phpmyadmin的登陆页面了。

CentOS 7配置phpMyAdmin及实现HTTPS服务

接下来创建登陆账号和密码:

#mysql
MariaDB [(none)]> SET PASSWORD FOR 'root'@'localhost'=PASSWORD('linuxidc');
MariaDB [(none)]> SET PASSWORD FOR 'root'@'127.0.0.1'=PASSWORD('linuxidc');
MariaDB [(none)]> FLUSH PRIVILEGES;

使用root账号和密码:linuxidc 就可以登陆了。

CentOS 7配置phpMyAdmin及实现HTTPS服务

phpMyAdmin 的详细介绍:请点这里
phpMyAdmin 的下载地址:请点这里

相关推荐