Mysql
無法在 xubuntu 中啟動 mysql 伺服器
嘿,我在 xubuntu 10.10 中使用 Xampp 版本 1.7.1。我已經將它安裝在 /opt/lampp 但問題是每當我嘗試使用
sudo ./lampp start
表明:
Starting XAMPP for Linux 1.7.1... XAMPP: Starting Apache with SSL (and PHP5)... XAMPP: Starting MySQL... Warning: World-writable config file '/opt/lampp/etc/my.cnf' is ignored Warning: World-writable config file '/opt/lampp/etc/my.cnf' is ignored XAMPP: Starting ProFTPD... XAMPP for Linux started.
所以我該怎麼做??
提前致謝。
我將首先通過執行來檢查文件 my.cnf 的權限
ls -la /opt/lampp/etc/my.cnf
。你會看到類似的東西
-rwxrw-rw- 1 root root 4998 Oct 28 2010 /opt/lampp/etc/my.cnf
然後,您可以通過鍵入來更改文件的權限
sudo chmod 644 /opt/lampp/etc/my.cnf
嘗試執行
ls -la /opt/lampp/etc/my.cnf
,看看它是否改變了權限。