Java运行环境jdk1.8 MySQL8 Nginx Ubuntu18
jdk版本:1.8.0_241 Mysql版本:Server version: 8.0.19 MySQL Community Server - GPL nginx版本:nginx/1.16.1
商品参数
商品介绍
【商品介绍】
PHP版本:PHP 7.4.3
Mysql版本:Server version: 8.0.19 MySQL Community Server - GPL
nginx版本:nginx/1.16.1
【功能亮点】
所有软件均使用官方源,请放心使用。
【产品说明】
1、服务器账户信息:Linux 系统 SSH 默认账户为 ubuntu,默认密码为新购云主机设置的密码,如需切换到root,登录系统后请执行sudo su -
$ sudo cat /etc/lsb-release
3、 默认防火墙是关闭的
$ sudo ufw status
【系统登录】
打开xshell客户端
一、管理nginx
1、启动
$ sudo systemctl start nginx
2、关闭
$ sudo systemctl stop nginx
3、重启
$ sudo systemctl restart nginx
4、查看nginx状态
$ sudo systemctl status nginx
5、版本查看
$ nginx -v
6、查看支持的模块参数
$ nginx -V
7、查看nginx进程
$ sudo ps -ef|grep nginx|grep -v grep
8、 查看nginx端口
$ sudo netstat -lntup|grep -w 80
9、浏览器直接访问本机ip
10、环境介绍
nginx路径:/etc/nginx/
nginx web主目录:/usr/share/nginx/html/
nginx 主配置文件:/etc/nginx/nginx.conf
三、数据库管理
1、启动
$ sudo systemctl start mysql
2、关闭
$ sudo systemctl stop mysql
3、重启
$ sudo systemctl restart mysql
4、查看mysql状态
$ sudo systemctl status mysql
5、查看数据库版本
mysql> select version();
6、数据库登录
$ sudo mysql -uroot -p 初始密码为:ZShj26@1200
7、修改数据库密码:需要登录到数据库执行命令
mysql> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的新密码';
mysql> FLUSH PRIVILEGES;
8、数据库默认是不支持远程连接的,如果需要请放开
mysql> update mysql.user set host='%' where user='root' and host='localhost';
mysql> FLUSH PRIVILEGES;
9、放开策略后,就可以通过windows客户端工具Navicat Premium连接:
三、Php管理
1、重启
$ sudo systemctl restart php7.4-fpm.service
2、启动
$ sudo systemctl start php7.4-fpm.service
3、关闭
$ sudo systemctl stop php7.4-fpm.service
4、版本查看:
$ php -v
5、查看进程:
$ ps -ef|grep php
6、 查看端口
$ sudo netstat -lntup|grep 9000
7、测试nginx与php之间的连接
7.1、编写index.php文件
$ cd /usr/share/nginx/html/
$ cat index.php
<?php
phpinfo();
?>
7.2、配置nginx
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html/;
location / {
index index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
7.2、重启
$ sudo systemctl restart php7.4-fpm.service
$ sudo systemctl restart nginx
7.3、测试,浏览器打开
8、测试php与mysql的连接
8.1、编写mysql.php文件
$ cd /usr/share/nginx/html/
$ cat mysql.php
<?php
$link=mysqli_connect("127.0.0.1","root","ZShj26@1200");
if(!$link) echo "FAILD!连接错误,用户名密码不对";
else echo "OK!可以连接";
?>
8.2、重启
$ sudo systemctl restart php7.4-fpm.service
$ sudo systemctl restart nginx
8.3、测试,浏览器打开
【声明】
1、镜像中如有收费软件,请根据软件官方说明购买使用版权,因版权问题产生的纠纷本公司概不负责。
镜像操作系统为公司定制,并经过反复测试验证,请参照商品详情中信息使用,免费镜像为客户体验使用,收费镜像为镜像制作费用,除镜像本身默认环境问题,均不含任何人工技术支持。
3、部分付费镜像有安全加固,但不保证服务器绝对安全,互联网中不存在绝对安全的服务器,请做好代码安全,并培养良好的使用习 惯。
【售后问题】
1、如有软件不能正常使用的情况请联系在线技术支持;
2、如需在线技术支持,配置、调试、故障排查等参照本公司服务类商品定价,下单后联系技术支持。
售后服务
为保障您的权益,请勿线下交易!90%的欺诈、纠纷、资金盗窃均由线下交易导致。腾讯云市场为您提供以下服务保障:
优质服务商家
严格准入 提供海量上云服务
7*8小时在线客服
全程在线咨询 助您安心购物
专业测试保证品质
安全监测 保障商品质量
售后无忧
不满意可退款 保障售后无忧