zdd20231022 测试环境与Linux SQL作业

1.远程登录 shell 服务器(连接方式查看入学须知贴)。
输入ssh jck282141@shell.ceshiren.com 回车
输入密码
imgpng

2.启动 python 服务:
检查服务状态。
浏览器访问服务。
python -m http.server 8666
ps -ef |grep python
netstat -nlp |grep 8666
img4png top img3png img2png http://shell.ceshiren.com:8666/ img1png

3.启动 ceshiren jar 包:
检查服务状态。
浏览器访问服务。
java -jar zdd/ceshiren.jar --server.port=8777 img5png ps -ef |grep ceshiren
netstat -nlp | grep :8777 img7png top img8png http://shell.ceshiren.com:8777/ img6png

nohup java -jar zdd/ceshiren.jar --server.port=8555 > nohup.out 2>&1 &
img10png http://shell.ceshiren.com:8555/ img11png

4.搭建 PetClinic 宠物医院。
使用 SQL 语句新增数据宠物主人数据。
在 Petclinic 页面中新增宠物主人信息。
编写 SQL 语句查询新增数据的正确性。

端口选择:8090-9000 之间的某一个,不要冲突。
提交服务启动之后的浏览器访问截图即可。 nohup java -jar spring-petclinic.jar --servet=8866 > nohup.out 2>&1 &
ps -ef |grep java img12png http://shell.ceshiren.com:8866/owners/new img13png img14png

select * from owners where last_name=“dongdong”; img15png

insert into owners (first_name , last_name , address , city , telephone) VALUES (‘zhang2’,‘dongdong2’,‘hangzhou1009hao2’,‘杭州’,‘1322222333’); img16png select * from owners where last_name=“dongdong2”; img17png