我的樹莓派的靜態ip為192.168.43.67。
lamp服務就是linux+apache+mysql+php,是乙個開源的web服務解決方案!
首先更新映象源sudo apt-get update,
安裝apache的命令:sudo apt-get install apache2
安裝mysql的命令:sudo apt-get install mysql-server
這兩個還是比較花時間的,不過靜靜等待就好了。
安裝php:sudo apt-get install php5
這裡我用的是清華的映象源,
deb stretch main contrib non-free rpi
deb-src stretch main contrib non-free rpi
很不幸,報錯了,映象源上沒有php5,樹莓派好像沒有別的常用映象,我的解決方法是:
其實就是裝php就行了,sudo apt-get install php7.0
再sudo apt-get install php7.0-mysql,這個映象源裡有。
裝完之後開啟樹莓派瀏覽器,輸入http://localhost,
可以看到
這就表明apache成功工作了,接著命令:sudo vim /var/www/html/index.html,把原來的東西都刪了!換成一段php!如下
<?php
print
<
<
<
eot<
!doctype html>
"en"
>
"utf-8"
>
test successful<
/title>
<
/head>
/h1>
congratulations.
<
/p>
your webserver and
php are working.
<
/p>
<
/body>
<
/html>
eot;
?>
這裡很坑的是vim不支援clipboard直接貼上,太坑了!開啟客戶端如下:
配置好了以後網頁輸入送你的網域名稱就能看到你伺服器的網頁了!
如何把樹莓派當伺服器,配置外網訪問
參考教程1 使用putty登入到樹莓派 參考教程2 樹莓派 vnc viewer 遠端桌面配置教程 自己在路由器已連線的列表裡找到樹莓派,看一下分配的位址是多少,有可能動態分配,過一段時間會變,則從這一步向下,也要重複一遍。參考教程1 沒有顯示器且ip未知的情況下登入樹莓派 虛擬伺服器 新增虛擬伺服...
樹莓派安裝LAMP作為伺服器
先執行 sudo apt get update更新軟體源 1 安裝apache sudo apt get install apache22 安裝mysql sudo apt get install mysql server中間會出現輸入 mysql 的 root 使用者的密碼 3 安裝php sud...
使用nat外網SSH樹莓派及訪問tomcat頁面
my config inte ce eth0 static ip address 192.168 0.101 24 static routers 192.168 0.1 static domain name servers 114.114 114 114 然後reboot 方法二 筆記本,網線,樹莓...