码迷,mamicode.com
首页 > 其他好文 > 详细

在树莓派3B上搭建LAMP

时间:2018-01-11 15:30:15      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:系统   表单   处理   采集   wan   creat   sensor   功能   err   

一、安装apache2

sudo apt-get install apache2

在电脑上输入树莓派的网址会有如下显示

技术分享图片

二、安装Mysql

sudo apt-get install mysql-server

安装过程中需要输入管理员密码

1. 测试mysql

pi@raspberrypi:~ $ mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 43
Server version: 5.5.57-0+deb8u1 (Raspbian)

Copyright (c) 2000, 2017, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type help; or \h for help. Type \c to clear the current input statement.

进入mysql数据库,并输入密码。

 

mysql> show databases
    -> ;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
+--------------------+
3 rows in set (0.00 sec)

查看已经建立的数据库

 

2.创建一个新的数据库和表单

以上数据库都是系统建立的数据库,要想开始插入数据,首先需要建立新的数据库和表单。这里假设要实现一个CPU温度记录的功能,存放在名为"sensordb"的数据库中。使用以下命令建立数据库:

mysql> create database sensordb
    -> ;
Query OK, 1 row affected (0.00 sec)

查看数据库是否建立成功:

mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sensordb           |
+--------------------+
4 rows in set (0.00 sec)

在sensordb数据库下创建一个表单(table),该表单包含两个域(fields):日期和当天平均CPU温度。时间域使用的数据格式为DATE;而温度使用DECIMAL(4,1),即最大三位整数加一位小数。

mysql> use sensordb
Database changed
mysql> create table cputemptable(recordtime DATE, temp DECIMAL(4,1));
Query OK, 0 rows affected (0.01 sec)

查看表单是否建立成功:

mysql> show tables
    -> ;
+--------------------+
| Tables_in_sensordb |
+--------------------+
| cputemptable       |
+--------------------+
1 row in set (0.00 sec)

查看表单的域名称与类型:

mysql> describe cputemptable
    -> ;
+------------+--------------+------+-----+---------+-------+
| Field      | Type         | Null | Key | Default | Extra |
+------------+--------------+------+-----+---------+-------+
| recordtime | date         | YES  |     | NULL    |       |
| temp       | decimal(4,1) | YES  |     | NULL    |       |
+------------+--------------+------+-----+---------+-------+
2 rows in set (0.00 sec)

3.向数据库中插入测试数据

在上一步中已经成功建立了用于CPU温度采集的数据库和表单,但是因为没有任何数据,所以该表单中没有任何内容。现在通过手动插入的方式向该表单中插入若干数据,测试是否可以正常运行。

mysql> insert into cputemptable
    -> values(2018-01-11, 36.5);
Query OK, 1 row affected (0.00 sec)

mysql> insert into cputemptable
    -> values(2018-01-12, 39.0);
Query OK, 1 row affected (0.01 sec)

查看数据库的结果

为了验证以上数据是否成功插入,可以通过select语句检索数据库:

mysql> select * from cputemptable;
+------------+------+
| recordtime | temp |
+------------+------+
| 2018-01-11 | 36.5 |
| 2018-01-12 | 39.0 |
+------------+------+
2 rows in set (0.00 sec)

可以看到之前的两条数据已经成功插入到cputemptable数据表中。最后使用quit退出交互系统:

mysql> quit
Bye

 

三、安装PHP

安装PHP和PHP的MySQL插件

sudo apt-get install php5 php5-mysql

安装phpmyadmin,用于管理数据库

sudo apt-get install phpmyadmin

这里要选择一下我们刚才安装的Apache2,按空格选择哦,选中后前面会多出一个*星号

技术分享图片

没看懂是什么,建议选否技术分享图片

技术分享图片
The phpmyadmin package must have a database installed and configured before it can be used.
phpmyadmin包必须在它被使用之前安装和配置一个数据库。

This can be optionally handled with dbconfig-common.
可以使用dbconfig-common来处理这一问题。

If you are an advanced database administrator and know that you want to perform this configuration manually, or if your database has already been installed and configured, you should refuse this option.
如果您是一个高级的数据库管理员,并且知道您想要手动执行这个配置,或者您的数据库已经安装和配置好了,那么您应该拒绝这个选项。

Details on what needs to be done should most likely be provided in /usr/share/doc/phpmyadmin.
具体需要做什么最有可能应该/usr/share/doc/phpmyadmin中提供。
View Code

 

至此,一个Apache2+PHP+MySQL+phpyadmin环境配置完毕!

 

在树莓派3B上搭建LAMP

标签:系统   表单   处理   采集   wan   creat   sensor   功能   err   

原文地址:https://www.cnblogs.com/ch122633/p/8267025.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!