luarocks错误 require ‘luasql.mysql' 报module 'luasql.mysql' not found:

错误:

require ‘luasql.mysql‘
stdin:1: module ‘luasql.mysql‘ not found:
no field package.preload[‘luasql.mysql‘]
no file ‘/usr/local/share/lua/5.3/luasql/mysql.lua‘
no file ‘/usr/local/share/lua/5.3/luasql/mysql/init.lua‘
no file ‘/usr/local/lib/lua/5.3/luasql/mysql.lua‘
no file ‘/usr/local/lib/lua/5.3/luasql/mysql/init.lua‘
no file ‘./luasql/mysql.lua‘
no file ‘./luasql/mysql/init.lua‘
no file ‘/usr/local/lib/lua/5.3/luasql/mysql.so‘
no file ‘/usr/local/lib/lua/5.3/loadall.so‘
no file ‘./luasql/mysql.so‘
no file ‘/usr/local/lib/lua/5.3/luasql.so‘
no file ‘/usr/local/lib/lua/5.3/loadall.so‘
no file ‘./luasql.so‘
stack traceback:
[C]: in function ‘require‘
stdin:1: in main chunk
[C]: in ?

环境: ubuntu 已安装lua,未安装mysql

解决方案

一、先安装mysql

Ubuntu上安装MySQL非常简单只需要几条命令就可以完成。

1. sudo apt-get install mysql-server

2. apt-get isntall mysql-client

3.  sudo apt-get install libmysqlclient-dev

参考链接

http://www.linuxidc.com/Linux/2016-07/133128.htm

二 安装luasql-mysql

luarocks install luasql-mysql

参考链接 http://www.runoob.com/lua/lua-database-access.html

三 安装luasql-mysql 出错

Error: Could not find header file for MYSQL
No file mysql.h in /usr/local/mysql
You may have to install MYSQL in your system and/or pass MYSQL_DIR or MYSQL_INCDIR to the luarocks command.
Example: luarocks install luasql-mysql MYSQL_DIR=/usr/local

解决方法:

在终端执行whereis mysql 找到mysql 的include路径

luarocks install luasql-mysql MYSQL_INCDIR=/usr/include/mysql

注释:配置自己查到的mysql.h 所在路径

luarocks错误 require ‘luasql.mysql' 报module 'luasql.mysql' not found:

时间: 2024-10-09 20:20:03

luarocks错误 require ‘luasql.mysql' 报module 'luasql.mysql' not found:的相关文章

mysql报错:MySQL server version for the right syntax to use near 'type=InnoDB'

工作中使用sql语句建表时,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 near 'type=InnoDB' at line 1 解决方案: 这个报错是由于某些版本的mysql不支持type写法,将type关键词改成ENGINE 即可. 版权声明:本文为博主原

MySQL 报错:MySQL Illegal mix of collations for operation 'like'

MySQL Illegal mix of collations for operation 'like' 在 MySQL 5.5 以上, 若字段类型 Type 是 time,date,datetime 在 select时如果使用 like '%中文%' 会出现 Illegal mix of collations for operation 'like'在编程时要对每个字段进行查找, 在执行时可能就会出现时间字段 like '%中文%' 这种语法,在旧版的 MySQL 是不会出现错误的. 升到 M

mysql报错解决MySQL Binlog(异常)——mysqlbinlog: unknown variable 'default-character-set=utf8'

在使用mysqlbinlog分析日志时,报错: /usr/local/mysql/bin/mysqlbinlog: unknown variable 'default-character-set=utf8' 原因分析: 产生这个问题的原因是因为我在my.cnf中的client选项组中添加了:  default-character-set=utf8 这个是mysqlbinlog的一个bug 解决方法: 使用mysqlbinlog工具查看二进制日志时会重新读取的mysql的配置文件my.cnf,而不

win7下安装MYSQL报错:"MYSQL 服务无法启动"的3534问题

win7下安装MYSQL,只到"net start mysql"这一步报错:3534的错误: 是直接官网下载的压缩文件.不是安装文件. 解决方法: 1:环境变量PATH添加完成(例如:h:\mysql\\bin 2:在mysql目录下,新建data目录. 3:在mysql目录下 新建新建一个默认配置文件my.ini. 内容: [mysql]# 设置mysql客户端默认字符集default-character-set=utf8 [mysqld]#设置3306端口port = 3306 #

Linux mysql 报错:MYSQL:The server quit without updating PID file

[[email protected] ~]# service mysqld startStarting MySQL.. ERROR! The server quit without updating PID file (/var/lib/mysql/localhost.localdomain.pid). 1.可能是/usr/local/mysql/data/rekfan.pid文件没有写的权限解决方法 :给予权限,执行 “chown -R mysql:mysql /usr/local/mysql

安装 MySQL报错 -bash: mysql: command not found

安装MySQL后(安装文件),不能直接在命令行中mysql. 因为命令行直接查找的是/usr/local/bin下边的命令,需要我们把mysql的命令放到.bash_profile中. vim ~/.bash_profile 添加:export PATH=$PATH:/usr/local/mysql/bin 保存,退出 重新启动(加载)bash_profile文件 source ~/.bash_profile 就可以了. # mysql -u root-bash: mysql: command

package.path require mysql 报错

在文件中 package.path = '/usr/local/share/lua/5.1/?.lua;/usr/local/openresty/lualib/resty/?.lua;' package.cpath = '/usr/local/lib/lua/5.1/?.so;' 执行local mysql = require "mysql" --正确local mysql = require "resty.mysql" --报错 去掉 package.path =

linux上的mysql报Table 'xxx' doesn't exist的错误解决方法

linux上的mysql报Table 'xxx' doesn't exist的错误解决方法 问题:程序报Table 'xxx' doesn't exist 的错误,但是查看数据库发现该表已经存在且字母也没有拼错. 原因:linux 上的mysql 默认是区分大小写导致的. 解决:改动mysql的配置文件,在my.cnf中的[mysqld]下面(位置不能错)加上lower_case_table_name=1这句(1表示不区分大小写,0区分大小写),保存重新启动mysql. 没有my.cnf文件,如

mariadb mysql 报'Access denied for user 'root'@'localhost' (using password: NO)'错误的解决

C:\Program Files\MariaDB 10.2\bin>mysql admin -u root password "x123456789" mysql Ver 15.1 Distrib 10.2.4-MariaDB, for Win64 (AMD64) Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others. C:\Program Files\MariaDB 10.2\bin>mys