Tag Archives: turnkey

Enable mod_rewrite on TurnKey Linux Apache2

How to enable mod_rewrite on TurnKey Linux: a2enmod rewrite root@lamp ~# a2enmod rewrite Enabling module rewrite. To activate the new configuration, you need to run: service apache2 restart root@lamp ~# service apache2 restart [….] Restarting web server: apache2apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName … waiting .apache2: Could not reliably determine the server’s fully qualified domain name, using 127.0.1.1 for ServerName . ok root@lamp ~# 🙂 [end]    

Enable remote MySQL connections on Turnkey Linux LAMP

I am a big fan of Turnkey Linux. It is great for working on projects locally, though sometimes I need to allow others access to the MySQL server on our LAN. Here are simple instructions for enabling remote MySQL connections and for allowing user access: How to allow remote access to databases | TurnKey GNU/Linux docshttp://www.turnkeylinux.org/docs/database-remote-accesssed -i “s/^bind-address/#bind-address/” /etc/mysql/my.cnf Configure MySQL to accept remote root connections (from any host (‘%’)): (added line breaks for readability) 🙂