赞
踩
EulerOS源码编译安装mysql常见问题及解决方案
1、MySQL问题解决:-bash:mysql:command not found
问题:
[root@linux115 /]# mysql –u root -p
-bash: mysql: command not found
因为mysql命令的路径在/usr/local/mysql/bin下面(与mysql安装路径有关,本例mysql安装路径为/usr/local/mysql),所以你直接使用mysql命令时,系统在/usr/bin下面查此命令,所以找不到了
解决办法是:
ln -s/usr/local/mysql/bin/mysql /usr/bin 做个链接即可
2、linux取消软连接
Linux下取消软连接,做个案例来说明:
1)先建立一个软连接
[root@rekfan.com test]# ls -il
总计 0
1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand
#建立file1和file1soft软连接
[root@rekfan.com test]# ln -s file1 file1soft
[root@rekfan.com test]# ls -il
总计 0
1491138 -rw-r–r– 1 root root 48 07-14 14:17 file1
1491140 lrwxrwxrwx 1 root root 5 07-14 14:24 file1soft -> file1
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand
2)删除上面建立的软连接
[root@rekfan.com test]# ls -il
总计 0
1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1
1491140 lrwxrwxrwx 1 root root 5 07-14 14:24 file1soft -> file1
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand
#删除软连接
[root@rekfan.com test]# rm -rf file1soft
[root@rekfan.com test]# ls -il
总计 0
1491138 -rw-r–r– 1 root root 0 07-14 14:17 file1
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2
1491139 -rw-r–r– 2 root root 0 07-14 14:17 file2hand
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。