我的编程空间,编程开发者的网络收藏夹
学习永远不晚

安装MariaDB phpMyAdmin

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

安装MariaDB phpMyAdmin

1 安装设置MariaDB5.5

[root@mysql ~]# yum -y install mariadb-server

[root@mysql ~]# vi /etc/my.cnf
[mysqld]

character-set-server=utf8

[root@mysql ~]# systemctl enable  mariadb.service
[root@mysql ~]# systemctl start  mariadb.service

[root@mysql ~]# mysql_secure_installation

NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
      SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!

In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.

Enter current password for root (enter for none):
OK, successfully used password, moving on...

Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.

Set root password? [Y/n] y
New password:
Re-enter new password:
Password updated successfully!
Reloading privilege tables..
 ... Success!


By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.

Remove anonymous users? [Y/n] y
 ... Success!

Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.

Disallow root login remotely? [Y/n] y
 ... Success!

By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.

Remove test database and access to it? [Y/n] y
 - Dropping test database...
 ... Success!
 - Removing privileges on test database...
 ... Success!

Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.

Reload privilege tables now? [Y/n] y
 ... Success!

Cleaning up...

All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.

Thanks for using MariaDB!


2 安装设置httpd

[root@mysql ~]# yum -y install httpd

[root@mysql ~]# rm -f /etc/httpd/conf.d/welcome.conf
[root@mysql ~]# systemctl enable httpd
Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service.
[root@mysql ~]# systemctl start httpd
[root@mysql ~]# vi /var/www/html/index.html

<html>
<body>
<div >
Test Page
</div>
</body>
</html>

直接访问网页

安装MariaDB phpMyAdmin

3 安装设置PHP

[root@mysql ~]#  yum -y install php php-mbstring php-pear

[root@mysql ~]# vi /etc/php.ini
date.timezone ="Asia/ShangHai"

[root@mysql ~]# systemctl restart httpd

[root@mysql ~]# vi /var/www/html/index.php

<html>
<body>
<div >
<?php
   print Date("Y/m/d");
?>
</div>
</body>
</html>

安装MariaDB phpMyAdmin

4 安装设置phpMyAdmin

[root@mysql ~]# yum --enablerepo=epel -y install phpMyAdmin php-mysql php-mcrypt

[root@mysql ~]# vi /etc/httpd/conf.d/phpMyAdmin.conf

<IfModule mod_authz_core.c>
     15      # Apache 2.4
     16      <RequireAny>
     17        Require ip 127.0.0.1 9.110.187.100/24
     18        Require ip ::1
     19      </RequireAny>
     20    </IfModule>
     21    <IfModule !mod_authz_core.c>
     22      # Apache 2.2
     23      Order Deny,Allow
     24      Deny from All
     25      Allow from 127.0.0.1
     26      Allow from ::1
     27    </IfModule>
     28 </Directory>
     29
     30 <Directory /usr/share/phpMyAdmin/setup/>
     31    <IfModule mod_authz_core.c>
     32      # Apache 2.4
     33      <RequireAny>
     34        Require ip 127.0.0.1 9.110.187.100/24
     35        Require ip ::1
     36      </RequireAny>
     37    </IfModule>

安装MariaDB phpMyAdmin

[root@mysql ~]# systemctl restart httpd

安装MariaDB phpMyAdmin

安装MariaDB phpMyAdmin

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

安装MariaDB phpMyAdmin

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

2024-04-02
2024-04-02

安装phpmyadmin

要安装phpMyAdmin,您需要按照以下步骤进行操作:1. 安装LAMP(Linux,Apache,MySQL和PHP)或WAMP(Windows,Apache,MySQL和PHP)服务器环境。2. 打开终端或命令提示符,并使用以下命令安
2023-10-11

Windows安装MariaDB

参考连接: https://mariadb.com/kb/en/mysql_install_dbexe/ 下载压缩包,解压,然后将bin文件夹加入Path。 然后打开CMD窗口执行安装命令:(管理员权限) mysql_install_db.exe --dat
Windows安装MariaDB
2020-05-04

CentOS 8 安装 MariaDB

MariaDB 数据库管理系统是 MySQL 的一个分支,主要由开源社区在维护,采用 GPL 授权许可。开发这个分支的原因之一是:甲骨文公司收购了 MySQL 后,有将 MySQL 闭源的潜在风险,因此社区采用分支的方式来避开这个风险。MariaDB完全兼容m
CentOS 8 安装 MariaDB
2016-04-11

怎么安装phpMyAdmin?

phpMyAdmin 就是一种 MySQL 数据库的管理工具,安装该工具后,即可以通过 web 形式直接管理 MySQL 数据,而不需要通过执行系统命令来管理,非常适合对数据库操作命令不熟悉的数据库管理者,下面详细说明该工具的安装方法。第一步:下载百度搜索下载
怎么安装phpMyAdmin?
2015-04-20

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录