Linux
Linux
梁同学与Android
Android 领域优质创作者,专注于安卓原生开发,专注于 Scratch、Python、Scratch、C、C++ 青少年编程等级考试等。等级考试真题请见链接库:https://download.csdn.net/download/qq_43290288/88548582
展开
-
【Linux】软链接与硬链接
【Linux】软链接与硬链接原创 2022-06-20 17:34:05 · 324 阅读 · 1 评论 -
【Linux 笔记】chmod +x 与 chmod 777 的区别
【Linux 笔记】chmod +x 与 chmod 777 的区别原创 2022-06-20 12:36:38 · 6236 阅读 · 1 评论 -
【Linux 报错】com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure The las
报错信息如下:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failureThe last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server. at com.mysql.cj.jdbc.excepti原创 2021-07-23 20:26:17 · 824 阅读 · 0 评论 -
【Linux - mysql】怎么修改数据库编码
我想修改成这个鬼样子第一步,找到 my.cnf 文件,不知道位置的百度,我的 my.cnf 文件位置如下/etc/my.cnf修改此文件,不会用 linux 命令修改的请看我的文章:https://blog.csdn.net/qq_43290288/article/details/115298318注意了,如果你的my.cnf 下面的样子是这样的[mysql]就要在 [mysql] 下面加这些代码[mysql] default-character-set=utf8[mysql.ser原创 2021-07-17 11:34:58 · 261 阅读 · 1 评论 -
【Linux - mysql】linux下mysql报Failed to restart mysqld.service: Unit not found
笔者使用 service mysqld restart 重启mysql服务的时候,报了Failed to restart mysqld.service: Unit not found估计也就是服务名错误了,于是使用 chkconfig --list 查询服务列表可以看到服务名称为"mysql",使用 service mysql restart 重启mysql服务成功...转载 2021-07-17 09:15:56 · 742 阅读 · 0 评论 -
【Linux - mysql】 unknown variable ‘sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZER
之前安装mysql之后使用发现诸多问题,一次是不能使用group by一次是datetime不能添加空字段,结果发现这几次问题都和这个sql_mdoe的设置有关,可是每次按照网上提示在my.ini添加了sql_mode之后重启服务,可是登录mysql都会报这个错误[ERROR] unknown variable ‘sql_mode=NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION’网上改的都挺好的转载 2021-07-17 08:55:14 · 656 阅读 · 0 评论 -
【阿里云域名】我都有服务器了,为什么还要购买域名?
举个例子,每个人出生的时候,都会有一串数字,这串数字会更随着你一生。它就是身份证,14xxxxxxxxxxxxxxxxxx。这串数字是你在地球上生活的的唯一标识符。但是考虑到它的实用性,父母叫你的时候不可能叫你的身份证号吧,所以就给你起了个名字。而在互联网中,每个机器设备都会有唯一的标识符,IP地址。但是记忆IP地址和身份号码类似也是一串长长的数字,十分不方便人们记忆。于是,出现了域名,来代替复杂的IP地址,方便我们快速访问网址。所以,企业网上建站时,最先需要购买域名。而关于域名为什么要付费使用,是因原创 2021-05-31 11:59:12 · 824 阅读 · 0 评论 -
【阿里云 Linux 服务器】mysql 遇到以下问题Expression #1 of SELECT list is not in GROUP BY clause and contains nonag
报错信息如下:Caused by: java.sql.SQLSyntaxErrorException: Expression #1 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'clothing_db.a.num' which is not functionally dependent on columns in GROUP BY clause; this is incompatible wit原创 2021-03-29 16:40:19 · 455 阅读 · 0 评论 -
【阿里云 Linux 服务器】购买 Linux 到项目部署过程中遇到的问题,部署 SpringBoot 项目到服务器上,在手机上安装 Android 程序进行测试
文章目录一、购买好服务器之后要重置密码二、利用 putty 程序登录访问你的服务器三、配置安全组开放端口四、部署项目前期准备工作4.1 安装 Java4.2 安装 mysql4.3 安装 Tomcat 8.0五、部署 SpringBoot 项目5.1 打包 SpringBoot jar 包5.2 导入数据库文件,以.sql结尾的文件5.3 执行 SpringBoot Jar 包5.4 修改 Android 端端口号一、购买好服务器之后要重置密码我的服务器版本CentOS 8.0 64位重置密码有关文原创 2021-03-29 16:10:18 · 809 阅读 · 2 评论 -
【报错】no main manifest attribute, in xxxx.jar
在你的pom.xml文件中一定要有这一段代码代码段如下: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId>原创 2021-03-28 15:59:23 · 376 阅读 · 0 评论 -
【报错】ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds t
设置mysql中的root账户密码出现1064错误代码 ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '("123456") where user="root"' at line 1解决方案截图 ERROR 1064 (42000)...转载 2021-03-28 13:14:45 · 99473 阅读 · 43 评论 -
【报错】No match for argument: mysql-community-server Error: Unable to find a match: mysql-community-s
Centos 安装mysql57 运行 yum install mysql-community-server 出现以下错误:1.No match for argument: mysql-community-server2.Error: Unable to find a match: mysql-community-server请尝试运行 yum module disable mysql然后在尝试 yum install mysql-community-server 命令即可...转载 2021-03-28 10:42:21 · 3428 阅读 · 0 评论 -
【阿里云 Linux 服务器】在阿里云购买的 Linux 或者 Windows 服务器,在用 putty 访问的时候不知道用户名密码怎么办?
阿里云服务器学习一:问题描述:在阿里云购买的 Linux 或者 Windows 服务器,在用 putty 访问的时候不知道用户名密码怎么办解决方法:购买的阿里云服务器一开始没有所谓的初始密码,需要我们到控制台下自行重置密码,在重置密码页面可以看到用户名为root,重置密码之后重启即可...原创 2021-03-28 08:51:39 · 424 阅读 · 0 评论