Heim > Datenbank > MySQL-Tutorial > mac下修改mysql

mac下修改mysql

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Freigeben: 2016-06-07 15:39:49
Original
1216 Leute haben es durchsucht

官方资料:http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html#resetting-permissions-unix 还有一个得参考的mysql安装,与python-mysql安装博客http://hearrain.com/2011/01/498 据官方文档说, For example, if you run the server usin

官方资料:http://dev.mysql.com/doc/refman/5.0/en/resetting-permissions.html#resetting-permissions-unix

还有一个值得参考的mysql安装,与python-mysql安装博客http://hearrain.com/2011/01/498


据官方文档说,

For example, if you run the server using the mysql login account, you should log in as mysql before using the instructions. Alternatively, you can log in as root, but in this case you must start mysqld with the --user=mysql option. If you start the server as root without using --user=mysql, the server may create root-owned files in the data directory, such as log files, and these may cause permission-related problems for future server startups.
Nach dem Login kopieren

如果在安装完mysql后,当你用root登录的时候,必须加上--user=mysql,否则的话,服务器会自动创建root-owned文件,这些就会导致权限的问题


我之前就是因为直接登录了,然后root密码无修改权限,各种无权限


解决的办法就是

shell> <span><code>kill `cat /mysql-data-directory/host_name.pid`</code></span>
Nach dem Login kopieren
mysql-data-directory   的路径一般是 /usr/local/mysql/data下的包含你的电脑名称的以pid结尾的文件


UPDATE mysql.user SET Password=PASSWORD('MyNewPass') WHERE User='root';
FLUSH PRIVILEGES;
Nach dem Login kopieren
结束进程之后,把上面的两句话放到一个文件中例如update_passwd,该文件在/usr/local/下


shell> <span><code>mysqld_safe --init-file=/home/me/mysql-init &</code></span>
Nach dem Login kopieren

然后sudo su进入root权限,进入mysql下bin输入以上命令,结束后(我的好像没有结束,就另开了一个terminal),

进入mysql命令行下

<span><code>UPDATE mysql.user SET Password=PASSWORD('MyNewPass')</code></span>
    ->                   <span><code>WHERE User='root';</code></span>
Nach dem Login kopieren

然后再进入就ok了





Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Aktuelle Ausgaben
Mac-Nutzung
Aus 1970-01-01 08:00:00
0
0
0
Wie installiere ich es auf dem Mac?
Aus 1970-01-01 08:00:00
0
0
0
Warum verfügt der Mac nicht über PHPstudy?
Aus 1970-01-01 08:00:00
0
0
0
MacOS – Mac OS SPF13 VIM-Anzeigeproblem
Aus 1970-01-01 08:00:00
0
0
0
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage