introduction
MiniBB, également connu sous le nom de Mini Bulletin Board, est un programme open source utilisé pour créer votre propre forum Internet. Il est écrit en PHP et spécialement conçu pour les petites et moyennes communautés de forum, qui ont moins de 100 messages uniques par jour. Dans ce tutoriel, je vais vous montrer comment installer et configurer le forum miniBB sur Ubuntu 16.04.
Conditions préalables
- Une instance de serveur Vultr Ubuntu 16.04 récemment lancée.
- Un utilisateur non root avec les privilèges sudo configuré sur votre serveur.
Étape 1: mettre à jour le système
Tout d'abord, mettez à jour votre système vers la dernière version stable en exécutant la commande suivante:
sudo apt-get update -y
sudo apt-get upgrade -y
sudo reboot
Étape 2: installation de la pile LAMP
Vous devrez installer la pile LAMP et certains modules PHP avant d'installer miniBB. Vous pouvez les installer avec la commande suivante:
sudo apt-get install apache2 libapache2-mod-php7.0 mariadb-server php7.0 php7.0-mysql php7.0-curl php7.0-gd php7.0-json php7.0-opcache php7.0-common
Étape 3: installation de miniBB
Vous devez d'abord télécharger la dernière version stable de miniBB à partir du site Web de miniBB .
Créez un répertoire nommé minibb
et extrayez l'archive téléchargée dans le répertoire racine du document Apache.
sudo mkdir /var/www/html/minibb
sudo unzip minibb.zip -d /var/www/html/minibb
Définissez les autorisations appropriées sur le minibb
répertoire.
sudo chown -R www-data:www-data /var/www/html/minibb
Vous devrez également apporter quelques modifications au setup_options.php
fichier.
sudo nano /var/www/html/minibb/setup_options.php
Modifiez le fichier selon vos besoins.
$DBhost='localhost';
$DBname='minibb';
$DBusr='minibbuser';
$DBpwd='password';
$admin_usr = 'admin';
$admin_pwd = 'admin@123';
$admin_email = '[email protected]';
$main_url='http://example.com';
Une fois que vous avez terminé, enregistrez et fermez le fichier.
Étape 4: configuration de MariaDB pour miniBB
Par défaut, MariaDB n'est pas sécurisé, vous devrez donc le sécuriser d'abord. Vous pouvez le sécuriser avec le mysql_secure_installation
script.
sudo mysql_secure_installation
Répondez à toutes les questions comme indiqué ci-dessous:
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.
Enter current password for root (enter for none):
OK, successfully used password, moving on...
Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.
You already have a root password set, so you can safely answer 'n'.
Change the root password? [Y/n] n
... skipping.
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] Y
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] Y
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] Y
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] Y
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
Ensuite, connectez-vous à la console MariaDB et créez une base de données pour miniBB:
mysql -u root -p
Entrez votre mot de passe root MariaDB et appuyez sur Entrée. Une fois connecté à MariaDB, vous devez créer une base de données pour miniBB:
MariaDB [(none)]> CREATE DATABASE minibb;
MariaDB [(none)]> CREATE USER 'minibbuser'@'localhost' IDENTIFIED BY 'password';
MariaDB [(none)]> GRANT ALL PRIVILEGES ON `minibb`.* TO 'minibbuser'@'localhost';
MariaDB [(none)]> FLUSH PRIVILEGES;
MariaDB [(none)]> \q
Étape 5: Configuration d'Apache pour miniBB
Créez un nouveau fichier hôte virtuel minibb.conf
pour Apache.
sudo nano /etc/apache2/sites-available/minibb.conf
Ajoutez les lignes suivantes:
<VirtualHost *:80>
ServerAdmin [email protected]
DocumentRoot /var/www/html/minibb
ServerName 192.168.1.227
ServerAlias www.example.com
<Directory /var/www/html/minibb/>
Options FollowSymLinks
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog /var/log/apache2/minibb_log
CustomLog /var/log/apache2/minibb_custom_log common
</VirtualHost>
Une fois que vous avez terminé, activez l'hôte virtuel en exécutant la commande suivante:
sudo a2ensite minibb.conf
sudo service apache2 reload
Étape 6: Accéder au forum miniBB
Il est temps d'accéder à l'interface Web miniBB. Ouvrez votre navigateur Web préféré et saisissez l'URL http://your-server-ip/_index.php
. Effectuez les étapes requises pour terminer l'installation.
Une fois l'installation terminée, vous pouvez vous connecter au panneau d'administration miniBB en accédant à http://your-server-ip/bb_admin.php?
. Profitez de votre nouveau miniBB.