Reputation: 13
Hello I'm new in Linux and sorry if this subject already exist,
I know that with php and Linux you can start a local server with the commande
php -S 127.0.0.1:8080
I just wanted to know if we can work with a local database in this way with Linux
PS: I don't want to install Xampp
Upvotes: 1
Views: 82
Reputation: 20726
Sure, you can install an local MySQL Server. If you are running Ubuntu/Debian here we go:
Install MySQL and PHP Modules
sudo apt-get install mysql-server php5-mysql
Finish Setup with:
sudo /usr/bin/mysql_secure_installation
Thats it!
Upvotes: 2