A PCRE internal error occured. This might be caused by a faulty plugin
====== Differences ====== This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
packages:amp:mysql [2013/12/18 02:02] admin [Install (the latest) MySQL Workbench] |
packages:amp:mysql [2014/09/24 02:42] (current) admin [Let Your MySQL Server Be Accessed From the Outside] |
||
---|---|---|---|
Line 15: | Line 15: | ||
Easy! | Easy! | ||
+ | Once you have installed MySQL, we should activate it with this command: | ||
+ | <code> | ||
+ | > sudo mysql_install_db | ||
+ | </code> | ||
+ | Finish up by running the MySQL set up script: | ||
+ | <code> | ||
+ | > sudo /usr/bin/mysql_secure_installation | ||
+ | </code> | ||
===== Let Your MySQL Server Be Accessed From the Outside ===== | ===== Let Your MySQL Server Be Accessed From the Outside ===== | ||
In order for other computers on your network to view the server you have created, you must first edit the "Bind Address". Begin by opening up Terminal to edit the my.cnf file. | In order for other computers on your network to view the server you have created, you must first edit the "Bind Address". Begin by opening up Terminal to edit the my.cnf file. | ||
<code> | <code> | ||
- | sudo gedit /etc/mysql/my.cnf | + | sudo nano /etc/mysql/my.cnf |
</code> | </code> | ||