后端开发2025年08月12日
===>首先需要使用https<===https://ruby.taobao.org/ 第一步 下载http://pan.baidu.com/s/1kU0rxtH 复制到ruby安装的根目录 第二步 添加系统环境变量: SSL_CERT_FILE=ruby的根目录加\cacert.pem(类似C:\Ruby22-x64\cace...
服务器2025年07月17日
做了一些尝试;比如kill -9 进程id 发现根本就杀不死。 查看ERROR.LOG 2015-12-07 18:50:08 29710 [ERROR] /usr/local/mysql/bin/mysqld: unknown variable 'scripts/mysql_install_db --user=mysql' 第一感觉;百度了下。大部分都是...
服务器2025年07月10日
问题原因:安装docker之前有安装cockpit-docker服务 解决方法:卸载docker-ce [root@localhost ~]# yum list installed | grep docker docker-ce.x86_64 18.06..ce-.el7 @docker-ce-stable [root@localhost ~]# yum ...
后端开发2025年07月04日
问题描述: sass文件编译时候使用ruby环境,在xp环境中没有任何问题,但是在windows7环境下无论是界面化的koala工具还是命令行模式的都会出现以下错误: Syntax error: Invalid GBK character “\xE5″ on line of E:\work\sass\sass\_big_box.scss from line...
数据库2025年06月29日
mysql8.0版本 在已存在的表里插入一条数据 insert INTO api_user(id,username,email,groups)VALUES('1','hh','hh@163.com','Boss'); 运行报错:1064 - You have an error in your SQL syntax; check the manual tha...
后端开发2025年06月26日
今天安装了一个CocoaPods,在安装淘宝ruby是遇到了问题 bogon:~ zhch$ gem sources -a http://ruby.taobao.org/ Error fetching http://ruby.taobao.org/: bad response Not Found 404 (http://ruby.taobao.org/sp...
数据库2025年06月25日
有几年没用过MySql数据了,今天在使用C#访问MySql数据库时出现了一个小插曲。 错误提示: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use n...
后端开发2025年06月23日
此时提示信息是你所启用的端口已经被占用了,所以: 1.输入命令(找到3000的所在端口pid): netstat -tulpn | grep 3000 当然,你会看到--> tcp 0 0 127.0.0.1.3000 0.0.0.0:* LISTEN 1877/ruby 2.输入命令(杀死被占用的pid): kill -9 1877 3.重...
服务器2025年06月06日
添加epel阿里云1、 首先卸载以前装的epel 以免影响:rpm -e epel-release2、 下载阿里提供的epel 。wget -P /etc/yum.repos.d/ http://mirrors.aliyun.com/repo/epel-6.repo3、yum clean all4、yum makecache ...
数据库2025年06月05日
报错--->java.sql.SQLSyntaxErrorException: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use nea...