[caption id="attachment_1480" align="alignnone" width="399"] Installing Wordpress on your Webserver[/caption] Installing Wordpress 1. Download the WordPress package from here. 2. Create a database and user. I use PHPadmin to administer my MYSQL databases. 3. Find and rename wp-config-sample.php to wp-config.php, then edit the file. You need to edit the italicized database settings below: /** The name of the database for WordPress */ define('DB_NAME', 'databasename'); /** MySQL database username */ define('DB_USER', 'databaseusername'); /** MySQL database password */ define('DB_PASSWORD', 'databasepassword'); You need to go to https://api.wordpress.org/secret-key/1.1/salt/ and copy and replace the 8 lines of text in your wp-config.php file. For example purposes only: define('AUTH_KEY', '#{. C`UN|)6_=1^h>JjQ?ca+Lw@tcBQ+Zfjg|loq[C?DBTs%}^,L<gY<+qM+J3kt');...Read More
Category: Archive (Before 2026)
Installing Minecraft Server Manager on a Linux Server
[caption id="attachment_1476" align="aligncenter" width="500"] Installing Minecraft Server Manager on a Linux Server[/caption] Login via SSH with root access and issue the bolded commands. 1. Install Java. sudo apt-get install openjdk-7-jre 2. Install Minecraft Server Manager. sudo wget -q http://git.io/Sxpr9g -O /tmp/msm && bash /tmp/msm 3. Create your Minecraft Server in MSM. sudo msm server create <servername> 4. Update to latest Minecraft version on MSM. sudo msm jargroup create mc172 https://s3.amazonaws.com/Minecraft.Download/versions/1.7.2/minecraft_server.1.7.2.jar sudo msm jargroup getlatest mc172 sudo msm jar mc172 5. Restart Minecraft Server Manager. sudo msm server restart Minecraft Server Manager Documentation Minecraft Server Manager Commands: --Setup Commands------------------------------------------------ server list ...Read More
How to set up your domain Virtual Hosts on a Linux server
[caption id="attachment_1478" align="alignnone" width="297"] How to set up your domain Virtual Hosts on a Linux server[/caption] Linux Server Domain Virtual Hosts are used to run more than one domain off of a single IP address. 1. Create a Directory. sudo mkdir -p /var/www/yourdomain.tld/public_html 2. Grant Permissions. sudo chown -R $USER:$USER /var/www/yourdomain.tld/public_html sudo chmod -R 755 /var/www 3. Create a page. sudo nano /var/www/yourdomain.tld/public_html/index.html Type in nano "Your domain is set up!" then Save and Exit 4, Create the new Virtual Host File. sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/yourdomain.tld.conf 5. Turn on Virtual Hosts in the configuration. sudo nano /etc/apache2/sites-available/yourdomain.tld.conf Change or Add the...Read More