基于SSM的毕业论文答辩系统

末尾获取源码
开发语言:Java
Java开发工具:JDK1.8
后端框架:SSM
前端:采用Vue技术开发
数据库:MySQL5.7和Navicat管理工具结合
服务器:Tomcat8.5
开发软件:IDEA / Eclipse
是否Maven项目:是

目录

一、项目简介

二、系统功能

三、系统项目截图

3.1前台首页

3.2后台管理

四、核心代码

4.1登录相关

4.2论文信息接口

4.3选题信息


一、项目简介

毕业论文答辩系统利用网络沟通、计算机信息存储管理,有着与传统的方式所无法替代的优点。比如计算检索速度特别快、可靠性特别高、存储容量特别大、保密性特别好、可保存时间特别长、成本特别低等。在工作效率上,能够得到极大地提高,延伸至服务水平也会有好的收获,有了网络,毕业论文答辩系统的各方面的管理更加科学和系统,更加规范和简便。

二、系统功能

本毕业论文答辩系统主要包括三大功能模块,即管理员模块、教师模块和学生模块。

(1)管理员模块:主要功能有:首页、个人中心、学生管理、教师管理、课题信息管理、选题信息管理、论文信息管理、论文评分管理、答辩通知管理、成绩评定管理、系统管理。 

(2)教师用户:首页、个人中心、课题信息管理、选题信息管理、论文信息管理、论文评分管理、答辩通知管理、成绩评定管理。

(3)学生:首页、个人中心、选题信息管理、论文信息管理、论文评分管理、成绩评定管理。


三、系统项目截图

3.1前台首页 

3.2后台管理

管理员后台页面

教师后台页面

学生后台页面

四、核心代码

4.1登录相关


package com.controller;import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Map;import javax.servlet.http.HttpServletRequest;import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;import com.annotation.IgnoreAuth;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.entity.TokenEntity;
import com.entity.UserEntity;
import com.service.TokenService;
import com.service.UserService;
import com.utils.CommonUtil;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.ValidatorUtils;/*** 登录相关*/
@RequestMapping("users")
@RestController
public class UserController{@Autowiredprivate UserService userService;@Autowiredprivate TokenService tokenService;/*** 登录*/@IgnoreAuth@PostMapping(value = "/login")public R login(String username, String password, String captcha, HttpServletRequest request) {UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));if(user==null || !user.getPassword().equals(password)) {return R.error("账号或密码不正确");}String token = tokenService.generateToken(user.getId(),username, "users", user.getRole());return R.ok().put("token", token);}/*** 注册*/@IgnoreAuth@PostMapping(value = "/register")public R register(@RequestBody UserEntity user){
//    	ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 退出*/@GetMapping(value = "logout")public R logout(HttpServletRequest request) {request.getSession().invalidate();return R.ok("退出成功");}/*** 密码重置*/@IgnoreAuth@RequestMapping(value = "/resetPass")public R resetPass(String username, HttpServletRequest request){UserEntity user = userService.selectOne(new EntityWrapper<UserEntity>().eq("username", username));if(user==null) {return R.error("账号不存在");}user.setPassword("123456");userService.update(user,null);return R.ok("密码已重置为:123456");}/*** 列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,UserEntity user){EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();PageUtils page = userService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.allLike(ew, user), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/list")public R list( UserEntity user){EntityWrapper<UserEntity> ew = new EntityWrapper<UserEntity>();ew.allEq(MPUtil.allEQMapPre( user, "user")); return R.ok().put("data", userService.selectListView(ew));}/*** 信息*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") String id){UserEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 获取用户的session用户信息*/@RequestMapping("/session")public R getCurrUser(HttpServletRequest request){Long id = (Long)request.getSession().getAttribute("userId");UserEntity user = userService.selectById(id);return R.ok().put("data", user);}/*** 保存*/@PostMapping("/save")public R save(@RequestBody UserEntity user){
//    	ValidatorUtils.validateEntity(user);if(userService.selectOne(new EntityWrapper<UserEntity>().eq("username", user.getUsername())) !=null) {return R.error("用户已存在");}userService.insert(user);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody UserEntity user){
//        ValidatorUtils.validateEntity(user);userService.updateById(user);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){userService.deleteBatchIds(Arrays.asList(ids));return R.ok();}
}

4.2论文信息接口

package com.controller;import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;import com.entity.LunwenxinxiEntity;
import com.entity.view.LunwenxinxiView;import com.service.LunwenxinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;/*** 论文信息* 后端接口* @author * @email * @date 2021-02-20 13:39:03*/
@RestController
@RequestMapping("/lunwenxinxi")
public class LunwenxinxiController {@Autowiredprivate LunwenxinxiService lunwenxinxiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,LunwenxinxiEntity lunwenxinxi, HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("jiaoshi")) {lunwenxinxi.setJiaoshigonghao((String)request.getSession().getAttribute("username"));}if(tableName.equals("xuesheng")) {lunwenxinxi.setXuejihao((String)request.getSession().getAttribute("username"));}EntityWrapper<LunwenxinxiEntity> ew = new EntityWrapper<LunwenxinxiEntity>();PageUtils page = lunwenxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, lunwenxinxi), params), params));return R.ok().put("data", page);}/*** 前端列表*/@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,LunwenxinxiEntity lunwenxinxi, HttpServletRequest request){EntityWrapper<LunwenxinxiEntity> ew = new EntityWrapper<LunwenxinxiEntity>();PageUtils page = lunwenxinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, lunwenxinxi), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( LunwenxinxiEntity lunwenxinxi){EntityWrapper<LunwenxinxiEntity> ew = new EntityWrapper<LunwenxinxiEntity>();ew.allEq(MPUtil.allEQMapPre( lunwenxinxi, "lunwenxinxi")); return R.ok().put("data", lunwenxinxiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(LunwenxinxiEntity lunwenxinxi){EntityWrapper< LunwenxinxiEntity> ew = new EntityWrapper< LunwenxinxiEntity>();ew.allEq(MPUtil.allEQMapPre( lunwenxinxi, "lunwenxinxi")); LunwenxinxiView lunwenxinxiView =  lunwenxinxiService.selectView(ew);return R.ok("查询论文信息成功").put("data", lunwenxinxiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){LunwenxinxiEntity lunwenxinxi = lunwenxinxiService.selectById(id);return R.ok().put("data", lunwenxinxi);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){LunwenxinxiEntity lunwenxinxi = lunwenxinxiService.selectById(id);return R.ok().put("data", lunwenxinxi);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody LunwenxinxiEntity lunwenxinxi, HttpServletRequest request){lunwenxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(lunwenxinxi);lunwenxinxiService.insert(lunwenxinxi);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody LunwenxinxiEntity lunwenxinxi, HttpServletRequest request){lunwenxinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(lunwenxinxi);lunwenxinxiService.insert(lunwenxinxi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody LunwenxinxiEntity lunwenxinxi, HttpServletRequest request){//ValidatorUtils.validateEntity(lunwenxinxi);lunwenxinxiService.updateById(lunwenxinxi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){lunwenxinxiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 提醒接口*/@RequestMapping("/remind/{columnName}/{type}")public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) {map.put("column", columnName);map.put("type", type);if(type.equals("2")) {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Calendar c = Calendar.getInstance();Date remindStartDate = null;Date remindEndDate = null;if(map.get("remindstart")!=null) {Integer remindStart = Integer.parseInt(map.get("remindstart").toString());c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart);remindStartDate = c.getTime();map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null) {Integer remindEnd = Integer.parseInt(map.get("remindend").toString());c.setTime(new Date());c.add(Calendar.DAY_OF_MONTH,remindEnd);remindEndDate = c.getTime();map.put("remindend", sdf.format(remindEndDate));}}Wrapper<LunwenxinxiEntity> wrapper = new EntityWrapper<LunwenxinxiEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("jiaoshi")) {wrapper.eq("jiaoshigonghao", (String)request.getSession().getAttribute("username"));}if(tableName.equals("xuesheng")) {wrapper.eq("xuejihao", (String)request.getSession().getAttribute("username"));}int count = lunwenxinxiService.selectCount(wrapper);return R.ok().put("count", count);}}

4.3选题信息

package com.controller;import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Map;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Date;
import java.util.List;
import javax.servlet.http.HttpServletRequest;import com.utils.ValidatorUtils;
import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import com.baomidou.mybatisplus.mapper.EntityWrapper;
import com.baomidou.mybatisplus.mapper.Wrapper;
import com.annotation.IgnoreAuth;import com.entity.XuantixinxiEntity;
import com.entity.view.XuantixinxiView;import com.service.XuantixinxiService;
import com.service.TokenService;
import com.utils.PageUtils;
import com.utils.R;
import com.utils.MD5Util;
import com.utils.MPUtil;
import com.utils.CommonUtil;/*** 选题信息* 后端接口* @author * @email * @date 2021-02-20 13:39:03*/
@RestController
@RequestMapping("/xuantixinxi")
public class XuantixinxiController {@Autowiredprivate XuantixinxiService xuantixinxiService;/*** 后端列表*/@RequestMapping("/page")public R page(@RequestParam Map<String, Object> params,XuantixinxiEntity xuantixinxi, HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("jiaoshi")) {xuantixinxi.setJiaoshigonghao((String)request.getSession().getAttribute("username"));}if(tableName.equals("xuesheng")) {xuantixinxi.setXuejihao((String)request.getSession().getAttribute("username"));}EntityWrapper<XuantixinxiEntity> ew = new EntityWrapper<XuantixinxiEntity>();PageUtils page = xuantixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuantixinxi), params), params));return R.ok().put("data", page);}/*** 前端列表*/@RequestMapping("/list")public R list(@RequestParam Map<String, Object> params,XuantixinxiEntity xuantixinxi, HttpServletRequest request){String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("jiaoshi")) {xuantixinxi.setJiaoshigonghao((String)request.getSession().getAttribute("username"));}if(tableName.equals("xuesheng")) {xuantixinxi.setXuejihao((String)request.getSession().getAttribute("username"));}EntityWrapper<XuantixinxiEntity> ew = new EntityWrapper<XuantixinxiEntity>();PageUtils page = xuantixinxiService.queryPage(params, MPUtil.sort(MPUtil.between(MPUtil.likeOrEq(ew, xuantixinxi), params), params));return R.ok().put("data", page);}/*** 列表*/@RequestMapping("/lists")public R list( XuantixinxiEntity xuantixinxi){EntityWrapper<XuantixinxiEntity> ew = new EntityWrapper<XuantixinxiEntity>();ew.allEq(MPUtil.allEQMapPre( xuantixinxi, "xuantixinxi")); return R.ok().put("data", xuantixinxiService.selectListView(ew));}/*** 查询*/@RequestMapping("/query")public R query(XuantixinxiEntity xuantixinxi){EntityWrapper< XuantixinxiEntity> ew = new EntityWrapper< XuantixinxiEntity>();ew.allEq(MPUtil.allEQMapPre( xuantixinxi, "xuantixinxi")); XuantixinxiView xuantixinxiView =  xuantixinxiService.selectView(ew);return R.ok("查询选题信息成功").put("data", xuantixinxiView);}/*** 后端详情*/@RequestMapping("/info/{id}")public R info(@PathVariable("id") Long id){XuantixinxiEntity xuantixinxi = xuantixinxiService.selectById(id);return R.ok().put("data", xuantixinxi);}/*** 前端详情*/@RequestMapping("/detail/{id}")public R detail(@PathVariable("id") Long id){XuantixinxiEntity xuantixinxi = xuantixinxiService.selectById(id);return R.ok().put("data", xuantixinxi);}/*** 后端保存*/@RequestMapping("/save")public R save(@RequestBody XuantixinxiEntity xuantixinxi, HttpServletRequest request){xuantixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xuantixinxi);xuantixinxiService.insert(xuantixinxi);return R.ok();}/*** 前端保存*/@RequestMapping("/add")public R add(@RequestBody XuantixinxiEntity xuantixinxi, HttpServletRequest request){xuantixinxi.setId(new Date().getTime()+new Double(Math.floor(Math.random()*1000)).longValue());//ValidatorUtils.validateEntity(xuantixinxi);xuantixinxi.setUserid((Long)request.getSession().getAttribute("userId"));xuantixinxiService.insert(xuantixinxi);return R.ok();}/*** 修改*/@RequestMapping("/update")public R update(@RequestBody XuantixinxiEntity xuantixinxi, HttpServletRequest request){//ValidatorUtils.validateEntity(xuantixinxi);xuantixinxiService.updateById(xuantixinxi);//全部更新return R.ok();}/*** 删除*/@RequestMapping("/delete")public R delete(@RequestBody Long[] ids){xuantixinxiService.deleteBatchIds(Arrays.asList(ids));return R.ok();}/*** 提醒接口*/@RequestMapping("/remind/{columnName}/{type}")public R remindCount(@PathVariable("columnName") String columnName, HttpServletRequest request, @PathVariable("type") String type,@RequestParam Map<String, Object> map) {map.put("column", columnName);map.put("type", type);if(type.equals("2")) {SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");Calendar c = Calendar.getInstance();Date remindStartDate = null;Date remindEndDate = null;if(map.get("remindstart")!=null) {Integer remindStart = Integer.parseInt(map.get("remindstart").toString());c.setTime(new Date()); c.add(Calendar.DAY_OF_MONTH,remindStart);remindStartDate = c.getTime();map.put("remindstart", sdf.format(remindStartDate));}if(map.get("remindend")!=null) {Integer remindEnd = Integer.parseInt(map.get("remindend").toString());c.setTime(new Date());c.add(Calendar.DAY_OF_MONTH,remindEnd);remindEndDate = c.getTime();map.put("remindend", sdf.format(remindEndDate));}}Wrapper<XuantixinxiEntity> wrapper = new EntityWrapper<XuantixinxiEntity>();if(map.get("remindstart")!=null) {wrapper.ge(columnName, map.get("remindstart"));}if(map.get("remindend")!=null) {wrapper.le(columnName, map.get("remindend"));}String tableName = request.getSession().getAttribute("tableName").toString();if(tableName.equals("jiaoshi")) {wrapper.eq("jiaoshigonghao", (String)request.getSession().getAttribute("username"));}if(tableName.equals("xuesheng")) {wrapper.eq("xuejihao", (String)request.getSession().getAttribute("username"));}int count = xuantixinxiService.selectCount(wrapper);return R.ok().put("count", count);}}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/70081.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

计算机专业毕业答辩问代码吗,计算机专业毕业论文答辩技巧

在做计算机毕业设计的整个过程中&#xff0c;一般有三个答辩&#xff0c;即开始答辩、中期答辩和最终答辩。有些学校简化为两个&#xff0c;即开题答辩和期末答辩。还有的学校将直接保留了最终答辩&#xff0c;省略了开始答辩和中期答辩。 当然不管你要参加几次答辩&#xff0c…

计算机专业毕业设计论文答辩PPT模板,10套计算机毕业设计答辩PPT模板

计算机专业毕业设计论文答辩PPT模板,10套计算机毕业设计答辩PPT模板 完整PPT模板包下载地址&#xff1a;计算机专业毕业设计论文答辩PPT模板 PPT模板预览 完整PPT模板包下载地址&#xff1a;10套计算机毕业设计答辩PPT模板

【答辩问题】计算机专业本科毕业设计答辩自述

各位老师,你们好!我叫XXX,来自计算机XX,我的论文题目是《在线考试系统》,论文是在XXX老师的指点下完成的,在这里我向X老师表示深深的谢意,向参加我的论文答辩各位老师表示衷心的感谢,并对我三年来的各位授课老师表示由衷的敬意。下面我将本论文设计的目的和主要内容向各位老师作…

outlook服务器邮件满了怎么办,Outlook邮箱不能接收邮件提示邮件箱已满的解决方法...

Outlook是一款很多用户都会用来收发邮件的邮箱工具&#xff0c;但是有时候邮件多了&#xff0c;可能会遇到不能接收邮件并提示邮箱已满的情况&#xff0c;该如何解决呢&#xff0c;为此这就给大家带来Outlook邮箱不能接收邮件提示邮件箱已满的解决方法吧。 存储的电子邮件数量有…

群晖端口转发 路由器配置

控制面板 - 外部访问 - 路由器配置 点击新增&#xff0c;可以增加内置的&#xff0c;或者自定义的转发机制 本机端口表示的是内部开启的端口号&#xff0c;比如ssh的端口22 外部端口表示外网可以访问的端口号&#xff0c;比如设置为8787 那么此时&#xff0c;如果你在外网需要…

群晖|你可能并不知道的群晖反向代理

最近在内网弄了台后台服务器来开发小程序&#xff0c;小程序呢是一定要走https的&#xff0c;所以就申请了SSL证书&#xff0c;本想通过nginx来进行https反向代理&#xff0c;但忘记nginx配置怎么写了。以前玩群晖的时候貌似见过哪儿有反向代理&#xff0c;一番研究&#xff0c…

分享免端口访问群晖的方法,可以顶级域名

文章目录 废话篇前言二、前提具备的条件三、群晖设置1、设置DDNS动态解析2、利用DDNS的主机域名来访问群晖3、设置套件为不同的别名 四、域名跳转1、借用第三方跳转工具2、具体操作 五、套件的跳转 废话篇 本篇文章为原创文章&#xff0c;可以保证在不出现大变化的前提下&…

群晖NAS搭建portainer

参考&#xff1a; 群晖、威联通、Linux最强docker管理工具portainer安装及汉化教程2022最新版本 Portainer官方文档 How to run Docker commands without sudo on a Synology NAS 因为群晖的NAS是基于linux但是限制很多的系统&#xff0c;有一些东西通过命令行操作可能会遇到权…

群晖NAS用户和用户组权限讲解

文章目录 废话篇前言用户和用户组是什么实例操作讲解梳理流程实际操作&#xff1a;添加用户组实例操作&#xff1a;新增用户 登录检查是否设置成功合理的用户组设置后文总结协助改进 废话篇 本篇文章为原创文章。转载请注明出处&#xff0c;感谢。 本人也有个人博客&#xff…

群晖DS918+ 添加多网口教程

很多软路由都是四网口、六网口为常见。 而群晖DS918 默认就只有 2个网口 这样一来对于多网口的软路由其它网口就无法充分利用上了 尤其是对于那些要做 ALL IN ONE 的玩家 在群晖里面安装虚拟机&#xff0c;装个 爱快 OpenWrt 利用多余的网口&#xff0c;实现路由功能 解决这个…

群晖NAS从入门到精通的所有帖子汇总,只要这一篇就够了

本章概述&#xff1a; 本站陆陆续续的转载、原创帖子也有十几二十篇了&#xff0c;从不同的角度对群晖NAS的各种骚操作都有深入的讲解&#xff0c;虽然很多文章都不是讲的很深入&#xff0c;但是针对小白入门已经是足够了&#xff0c;希望对小白来说是一个入门&#xff0c;群晖…

[NAS] Synology(群晖) / QNAP(威联通) 设置 MariaDB 远程访问 (附带多设备DB速度测试)

简介 MariaDB数据库管理系统是MySQL的一个分支&#xff0c;主要由开源社区在维护&#xff0c;采用GPL授权许可 MariaDB的目的是完全兼容MySQL&#xff0c;包括API和命令行&#xff0c;使之能轻松成为MySQL的代替品。在存储引擎方面&#xff0c;使用XtraDB来代替MySQL的InnoDB。…

esxi设置群晖核显直通

1. 进入esxi后台依次点击 管理-硬件-PCI设备-选择显卡-切换直通-重新引导 重启之后就直通处于活动状态即可 2.在虚拟机关机状态设置虚拟机 添加pci设备 添加后&#xff0c;我们检查一下配置&#xff0c;CUP三个框框不要勾&#xff0c;内存要全部锁定 &#xff0c;不然启动不了…

在群晖上使用天翼云盘

国内的云盘接口一般都不公开&#xff0c;因此可玩性都不高&#xff0c;像 Rclone 中基本上都是国外的云盘&#xff0c;除了腾讯的 COS 和阿里的 OSS&#xff0c;因为这两者都支持 S3 对象存储。 老苏年初买了个天翼云盘的会员&#xff0c;一直在寻找天翼云盘在群晖上使用的办法…

TP-link路由器与群晖NAS的端口转发设置

首先列出我使用的设备的型号。 路由器型号: TP-LINK Archer C9 NAS型号&#xff1a;Synology DS416 需求定义&#xff1a;能够从外网访问路由器下内网中的NAS的各种服务&#xff08;如Web管理界面&#xff0c;Photo Station, Cloud Station, FTP等&#xff09; 实现思路与步骤&…

穿透内网远程访问群晖NAS

现代科技日新月异&#xff0c;我们身边的电子设备也在不断更新&#xff0c;日积月累之下&#xff0c;被淘汰的电子设备越来越多&#xff0c;难道就让这些性能不算差的电子设备从此闲置么&#xff0c;这明显不符合我们物尽其用的原则&#xff0c;不少玩家都将闲置的电脑改造成了…

PC - 史上最简单的远程访问群晖 NAS 方法

文章目录 1、下载安装cpolar群晖套件1.1 注册cpolar账号1.2 下载cpolar群晖套件1.3 安装cpolar群晖套件 2、创建隧道映射5000端口2.1 打开cpolar群晖套件2.2 创建远程访问隧道2.3 获取公网URL地址 3、公网远程群晖NAS 教大家一个新手小白都可以轻松掌握的远程群晖NAS方法&#…

如何在公司访问家里的群晖NAS,通过SSH一分钟就可以搞定

本人买了群晖NAS&#xff0c;上面存储了文件资料&#xff0c;想在公司远程访问这些资料&#xff0c;以下是使用SSH设置的步骤 1、登录NAS&#xff0c;打开 IP 访问限制 打开控制面板--外部访问--安全性---忽略IP检测前打钩 √ 2、启动 SSH 功能 打开桌面控制面板&#xff0c…

腾讯云最便宜的云服务器多少钱一年

关键词&#xff1a;便宜云服务器&#xff0c;最便宜的云服务器&#xff0c;免费云服务器 腾讯云最便宜的服务器是学生服务器套餐包含特价云服务器、域名(可选)、50免费对象存储空间&#xff08;6个月&#xff09;&#xff1b;每日限量100个&#xff0c;每个用户限购1个&#x…

游戏高防服务器一个月多少钱

游戏经常被攻击&#xff0c;导致卡顿掉线&#xff0c;一般游戏行业、直播网站、电商等行业会选择高防服务器&#xff0c;相对于普通服务器&#xff0c;游戏高防服务器有什么优势&#xff1f;游戏高防服务器一个月要多少钱呢&#xff1f; ​ 相对于普通服务器&#xff0c;高防服…