Difference between revisions of "Install a new server (CentOS)"

From Organic Design wiki
(adjusted from WL install)
m
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{legacy}}
 
{{procedure}}
 
{{procedure}}
  
Line 4: Line 5:
  
 
If you don't already have an RSA key-pair, then first generate them on your local Linux host with the following command:
 
If you don't already have an RSA key-pair, then first generate them on your local Linux host with the following command:
ssh-keygen -t rsa
+
<source lang="bash">
 +
ssh-keygen -t rsa
 +
</source>
 +
 
  
 
Then send me the public key which will be called '''id_rsa.pub''' in a hidden directory called '''.ssh''' in your home directory. I will then create a user for you and add the key to your '''.ssh/authorized_keys''' file (it will need to be created initially for the first key to be added). The following settings were then adjusted in the '''/etc/ssh/sshd_config''' to prevent root or password-based logins.
 
Then send me the public key which will be called '''id_rsa.pub''' in a hidden directory called '''.ssh''' in your home directory. I will then create a user for you and add the key to your '''.ssh/authorized_keys''' file (it will need to be created initially for the first key to be added). The following settings were then adjusted in the '''/etc/ssh/sshd_config''' to prevent root or password-based logins.
 +
<source>
 +
PermitRootLogin no
 +
PasswordAuthentication no
 +
</source>
  
PermitRootLogin no
 
PasswordAuthentication no
 
  
 
The SSH server was then restarted for the changes to take effect:
 
The SSH server was then restarted for the changes to take effect:
/etc/init.d/sshd restart
+
<source lang="bash">
 +
/etc/init.d/sshd restart
 +
</source>
 +
 
  
 
Login for known users with RSA certicate on the server now goes like this:
 
Login for known users with RSA certicate on the server now goes like this:
ssh [username]@109.75.175.229
+
<source>
 +
ssh [username]@109.75.175.229
 +
</source>
 +
 
  
 
== LAMP installation ==
 
== LAMP installation ==
 
By default the server came with only the bare minimum installed (the best way to do it - no desktop, web or database servers, no cpanel). So first install Apache, PHP and MySQL using the [[Wikipedia:Yellowdog Updater, Modified|YUM]] package manager:
 
By default the server came with only the bare minimum installed (the best way to do it - no desktop, web or database servers, no cpanel). So first install Apache, PHP and MySQL using the [[Wikipedia:Yellowdog Updater, Modified|YUM]] package manager:
yum install subversion mysql-server mysql httpd php php-mysql php-soap ImageMagick
+
<source lang="bash">
+
yum install subversion mysql-server mysql httpd php php-mysql php-soap ImageMagick
/etc/init.d/httpd start
+
 
/etc/init.d/mysqld start
+
/etc/init.d/httpd start
 +
/etc/init.d/mysqld start
 +
</source>
 +
 
  
 
Note that the '''7za''' executable needs to be manually put into '''/bin'''. The ''7zip'' compression utility is far more effective that ''gzip'' for compression wiki databases.
 
Note that the '''7za''' executable needs to be manually put into '''/bin'''. The ''7zip'' compression utility is far more effective that ''gzip'' for compression wiki databases.
  
 
Next modify the Apache configuration in '''/etc/httpd/conf/httpd.conf'''. Change the document root from '''/var/www/html''' to '''/var/www''' and then add the following virtual host container to the bottom which allows the wiki to use "friendly URLs":
 
Next modify the Apache configuration in '''/etc/httpd/conf/httpd.conf'''. Change the document root from '''/var/www/html''' to '''/var/www''' and then add the following virtual host container to the bottom which allows the wiki to use "friendly URLs":
<pre>
+
<source lang="apache">
 
<VirtualHost *:80>
 
<VirtualHost *:80>
  
Line 48: Line 63:
  
 
</VirtualHost>
 
</VirtualHost>
</pre>
+
</source>
 +
 
  
 
Test that Apache and PHP are running correctly by going to the IP in the browser and seeing the Apache test page, and then creating a file called '''/var/www/wiki/info.php''' containing '''<?php phpinfo(); ?>''' and then view that file in the browser and seeing the PHP configuration summary.
 
Test that Apache and PHP are running correctly by going to the IP in the browser and seeing the Apache test page, and then creating a file called '''/var/www/wiki/info.php''' containing '''<?php phpinfo(); ?>''' and then view that file in the browser and seeing the PHP configuration summary.
  
 
Retrieve the various extensions required, for example:
 
Retrieve the various extensions required, for example:
<pre>
+
<source lang="bash">
 
svn co svn+ssh://nad@organicdesign.co.nz/svn/work/WhatLeadership
 
svn co svn+ssh://nad@organicdesign.co.nz/svn/work/WhatLeadership
  
 
svn co http://svn.wikimedia.org/svnroot/mediawiki/branches/REL1_16/extensions/Variables
 
svn co http://svn.wikimedia.org/svnroot/mediawiki/branches/REL1_16/extensions/Variables
</pre>
+
</source>
 +
 
 +
 
 
Doing it this way allows us to keep the extensions up to date using '''svn update'''.
 
Doing it this way allows us to keep the extensions up to date using '''svn update'''.
  
 
== See also ==
 
== See also ==
 
*[[Install a new server]]
 
*[[Install a new server]]
 +
[[Category:Installation]]

Latest revision as of 21:30, 3 June 2018

Legacy.svg Legacy: This article describes a concept that has been superseded in the course of ongoing development on the Organic Design wiki. Please do not develop this any further or base work on this concept, this is only useful for a historic record of work done. You may find a link to the currently used concept or function in this article, if not you can contact the author to find out what has taken the place of this legacy item.
Procedure.svg Install a new server (CentOS)
Organic Design procedure

Generally it's best to add specific users and disable the root login, then use key-based login rather than passwords so that a potential hacker requires a private key to be able to login. And even then is only in an unprivileged account and requires the root password to gain root access.

If you don't already have an RSA key-pair, then first generate them on your local Linux host with the following command:

ssh-keygen -t rsa


Then send me the public key which will be called id_rsa.pub in a hidden directory called .ssh in your home directory. I will then create a user for you and add the key to your .ssh/authorized_keys file (it will need to be created initially for the first key to be added). The following settings were then adjusted in the /etc/ssh/sshd_config to prevent root or password-based logins.

PermitRootLogin no
PasswordAuthentication no


The SSH server was then restarted for the changes to take effect:

/etc/init.d/sshd restart


Login for known users with RSA certicate on the server now goes like this:

ssh [username]@109.75.175.229


LAMP installation

By default the server came with only the bare minimum installed (the best way to do it - no desktop, web or database servers, no cpanel). So first install Apache, PHP and MySQL using the YUM package manager:

yum install subversion mysql-server mysql httpd php php-mysql php-soap ImageMagick

/etc/init.d/httpd start
/etc/init.d/mysqld start


Note that the 7za executable needs to be manually put into /bin. The 7zip compression utility is far more effective that gzip for compression wiki databases.

Next modify the Apache configuration in /etc/httpd/conf/httpd.conf. Change the document root from /var/www/html to /var/www and then add the following virtual host container to the bottom which allows the wiki to use "friendly URLs":

<VirtualHost *:80>

        RewriteEngine On

        RewriteCond %{REQUEST_URI} ^/$
        RewriteRule .* /wiki/index.php?title=Main_Page [L]

       	RewriteCond %{REQUEST_URI} ^/wiki/images/thumb/./../.*\&
        RewriteRule ^(.*?)\&(.*)$ $1\%26$2

        RewriteCond %{REQUEST_URI} ^/wiki/images/thumb/./../.+?/[0-9]+px-
        RewriteRule ^.+/(.+?)/([0-9]+)px- /wiki/thumb.php?w=$2&f=$1 [L]

        RewriteCond %{REQUEST_URI} ^/(wiki/|files/|[fF]avicon.ico|[rR]obots.txt)
       	RewriteRule (.*) $1 [L]

        RewriteCond %{REQUEST_URI} ^/
        RewriteRule (.*) /wiki/index.php$1 [L]

</VirtualHost>


Test that Apache and PHP are running correctly by going to the IP in the browser and seeing the Apache test page, and then creating a file called /var/www/wiki/info.php containing <?php phpinfo(); ?> and then view that file in the browser and seeing the PHP configuration summary.

Retrieve the various extensions required, for example:

svn co svn+ssh://nad@organicdesign.co.nz/svn/work/WhatLeadership

svn co http://svn.wikimedia.org/svnroot/mediawiki/branches/REL1_16/extensions/Variables


Doing it this way allows us to keep the extensions up to date using svn update.

See also