A PCRE internal error occured. This might be caused by a faulty plugin

**This is an old revision of the document!** ----

A PCRE internal error occured. This might be caused by a faulty plugin

====== MySQL Server: Installation & Management ====== The last fundamental piece of our web development environment is, of course, a database management system of choice: MySQL. ===== Install MySQL Server ===== Installing MySQL server is an easy task, simply issue the following commands in a Terminal window: <code> sudo apt-get install mysql-server </code> You will be asked to enter the password you wish to set for the mysql root user.\\ Once the install process has completed, verify that mysql is running using: <code> sudo service mysql status </code> Easy! ===== 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. <code> sudo gedit /etc/mysql/my.cnf </code> Change the line <code> bind-address = 127.0.0.1 </code> Changing the 127.0.0.1 to your IP address.