小编给大家分享一下树莓派搭建java web服务器中如何安装jdk-nginx-mysql-tomcat,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
安装nginx web服务器 (约6MB)
sudo apt-get install nginx
2、启动nginx
sudo /etc/init.d/nginx start
nginx的www根目录默认在 /usr/share/nginx/www中
3、修改nginx的配置文件
sudo vi /etc/nginx/sites-available/default
1)以下几个选项注意一下:
listen 8080; ## listen for ipv4; this line is default and implied
//监听的端口号,如果与其它软件冲突,可以在这里更改
root /usr/share/nginx/www;
//nginx 默认路径html所在路径
index index.html index.htm index.php;
//nginx默认寻找的网页类型,我们可以增加一个index.php
2)PHP脚本支持(不设这几项PHP脚本无法识别)
找到php的定义段,将这些行的注释去掉 ,修改后内容如下
location ~ .php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
php段中有一些其它定义,不要去动它,比如:
# fastcgi_split_path_info ...
# fastcgi_pass 127.0.0.1:9000
4)安装php和sqlite(约3MB)
sudo apt-get install php5-fpm php5-mysql
5)重新加载nginx的配置
sudo /etc/init.d/nginx reload
6)测试html
通过主机的IE访问树莓派,可以看到主页(表示Web服务器已正常启动)
7)测试php
在树莓派中生成一php文件
sudo vi /usr/share/nginx/www/index.php
<?php print <<< EOT <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test successful</title> </head> <body> <h2>Test successful</h2> <p>Congratulations.</p> <p>Your webserver and PHP are working.</p> </body> </html> EOT; ?>
====================================================================
安装mysql
首先更新我们树莓派的软件
sudo apt-get update
等待更新完毕后安装mysql服务
sudo apt-get install mysql-server
安装过程中需要输入两次 mysql 中 root 的登录密码
安装成功后使用以下命令登录mysql
mysql -u root -p
登录成功后如果需要开启mysql远程连接,运行如下命令,给root用户添加远程访问权限
mysql> GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; mysql> flush privileges;
树莓派mysql默认只监听本地ip访问,如果需要远程IP访问还需要修改 /etc/mysql/my.cnf
vi /etc/mysql/my.cnf
找到
# Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. bind-address = 127.0.0.1
把 127.0.0.1 改成 0.0.0.0 就可以远程访问了。
看完了这篇文章,相信你对“树莓派搭建java web服务器中如何安装jdk-nginx-mysql-tomcat”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。