有没有人见过这个?
[host@user init.d]$ mysqld stop
mysqld: Too many arguments (first extra is 'stop').
Use --help to get a list of available options
[host@user init.d]$ mysqld restart
[host@user init.d]$ mysqld start --user=mysql &
[1] 6782
[host@user init.d]$ mysqld: Too many arguments (first extra is 'start').
Use --help to get a list of available options
[1]+ Exit 1 mysqld start --user=mysql
发生这种情况有什么直接的原因吗?
答案1
尝试调用which mysqld
并查看您执行了哪个文件。我认为它将类似于/usr/bin/mysqld
或/usr/sbin/mysqld
。
您要调用的程序是/etc/init.d/mysqld
, 或/etc/init.d/mysql
,或类似的。