root@DESKTOP-0CU081I:/# sysbench oltp_common.lua oltp.lua --mysql-user=yunqu --mysql-password=p@sswr0d123 --mysql-db=tpc c --mysql-table-engine=InnoDB --table-size=5000000 --tables=1 --threads=8 --events=0 --time=0 --report-interval=10 --per centile=99 --rand-init=on --create_secondary=off --num-warehouses=500 prepare Unrecognized command line argument: prepare
时间: 2023-10-05 09:09:57 浏览: 203
在您提供的命令中,`c` 与前面的 `--mysql-db=tpc` 之间有一个空格,这可能是命令无法识别 `prepare` 的原因。请使用以下命令进行测试数据的准备:
```
sysbench oltp_common.lua oltp.lua --mysql-user=yunqu --mysql-password=p@sswr0d123 --mysql-db=tpc --mysql-table-engine=InnoDB --table-size=5000000 --tables=1 --threads=8 --events=0 --time=0 --report-interval=10 --percentile=99 --rand-init=on --create_secondary=off --num-warehouses=500 prepare
```
注意,`--percentile` 参数中的 `t` 和 `i` 之间应该是没有空格的。
相关问题
root@DESKTOP-0CU081I:/# sysbench oltp_common.lua oltp.lua --mysql-host=0.0.0.0 --mysql-port=3306 --mysql-user=yunqu --my sql-password=p@sswr0d123 --mysql-db=tpcc --mysql-table-engine=InnoDB --table-size=5000000 --tables=1 --threads=8 --event s=0 --time=0 --report-interval=10 --percentile=99 --rand-init=on --create_secondary=off --num-warehouses=500 prepare Unrecognized command line argument: prepare
请注意 `--my sql-password` 这个参数中间有一个空格,这可能是导致命令无法识别 `prepare` 的原因。请使用以下命令进行测试数据的准备:
```
sysbench oltp_common.lua oltp.lua --mysql-host=0.0.0.0 --mysql-port=3306 --mysql-user=yunqu --mysql-password=p@sswr0d123 --mysql-db=tpcc --mysql-table-engine=InnoDB --table-size=5000000 --tables=1 --threads=8 --events=0 --time=0 --report-interval=10 --percentile=99 --rand-init=on --create_secondary=off --num-warehouses=500 prepare
```
请注意,`--percentile` 参数中的 `t` 和 `i` 之间应该是没有空格的。
如果问题仍然存在,请提供更多错误信息或上下文,以便我能够更好地帮助您解决问题。
root@DESKTOP-0CU081I:/# sysbench tpcc.lua --mysql-db=tpcc --mysql-user=yunqu --mysql-password=p@sswr0d123 --mysql-host=0.0.0.0 --mysql-port=3306 --report-interval=10 --time=300 --threads=64 --tables=10 --scale=10 prepar sysbench 1.0.20 (using bundled LuaJIT 2.1.0-beta2) FATAL: Cannot find benchmark 'tpcc.lua': no such built-in test, file or module
根据您提供的命令和错误信息,问题可能是由于sysbench无法找到tpcc.lua文件。请确保您已经正确安装了tpcc.lua文件,并且它在sysbench可以访问的路径中。您可以使用以下命令找到文件路径:
```
find / -name tpcc.lua
```
如果找到了文件,请确保在sysbench命令中正确指定了文件的路径。例如:
```
sysbench /path/to/tpcc.lua --mysql-db=tpcc --mysql-user=yunqu --mysql-password=p@sswr0d123 --mysql-host=0.0.0.0 --mysql-port=3306 --report-interval=10 --time=300 --threads=64 --tables=10 --scale=10 prepare
```
如果您仍然无法解决问题,请检查sysbench是否正确安装并且在PATH环境变量中可用。您还可以尝试更新sysbench版本或使用其他基准测试工具。
阅读全文