introduzione
MiniBB, noto anche come Mini Bulletin Board, è un programma open source utilizzato per creare il tuo forum Internet. È scritto in PHP e appositamente progettato per le comunità di forum di piccole e medie dimensioni, che hanno meno di 100 post unici al giorno. In questo tutorial, ti mostrerò come installare e configurare il forum miniBB su Ubuntu 16.04.
Prerequisiti
- Un'istanza del server Vultr Ubuntu 16.04 appena lanciata.
- Un utente non root con i privilegi di sudo impostati sul tuo server.
Passaggio 1: aggiornare il sistema
Innanzitutto, aggiorna il tuo sistema all'ultima versione stabile eseguendo il comando seguente:
sudo apt-get update -y
sudo apt-get upgrade -y
sudo reboot
Passaggio 2: installazione dello stack LAMP
Sarà necessario installare lo stack LAMP e alcuni moduli PHP prima di installare miniBB. Puoi installarli con il seguente comando:
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
Passaggio 3: installazione di miniBB
Per prima cosa dovrai scaricare l'ultima versione stabile di miniBB dal sito web di miniBB .
Creare una directory denominata minibb
ed estrarre l'archivio scaricato nella directory principale del documento Apache.
sudo mkdir /var/www/html/minibb
sudo unzip minibb.zip -d /var/www/html/minibb
Impostare le autorizzazioni appropriate sulla minibb
directory.
sudo chown -R www-data:www-data /var/www/html/minibb
Sarà inoltre necessario apportare alcune modifiche al setup_options.php
file.
sudo nano /var/www/html/minibb/setup_options.php
Cambia il file secondo le tue esigenze.
$DBhost='localhost';
$DBname='minibb';
$DBusr='minibbuser';
$DBpwd='password';
$admin_usr = 'admin';
$admin_pwd = 'admin@123';
$admin_email = '[email protected]';
$main_url='http://example.com';
Al termine, salva e chiudi il file.
Passaggio 4: configurazione di MariaDB per miniBB
Per impostazione predefinita, MariaDB non è stato protetto, quindi è necessario prima proteggerlo. Puoi proteggerlo con lo mysql_secure_installation
script.
sudo mysql_secure_installation
Rispondi a tutte le domande come mostrato di seguito:
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!
Quindi, accedi alla console MariaDB e crea un database per miniBB:
mysql -u root -p
Inserisci la tua password di root MariaDB e premi invio. Una volta effettuato l'accesso a MariaDB, è necessario creare un database per 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
Passaggio 5: configurazione di Apache per miniBB
Crea un nuovo file host virtuale minibb.conf
per Apache.
sudo nano /etc/apache2/sites-available/minibb.conf
Aggiungi le seguenti righe:
<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>
Al termine, abilitare l'host virtuale eseguendo il comando seguente:
sudo a2ensite minibb.conf
sudo service apache2 reload
Passaggio 6: accesso al forum miniBB
È tempo di accedere all'interfaccia web miniBB. Apri il tuo browser preferito e digita l'URL http://your-server-ip/_index.php
. Completare i passaggi richiesti per completare l'installazione.
Al termine dell'installazione, è possibile accedere al pannello di amministrazione del miniBB accedendo a http://your-server-ip/bb_admin.php?
. Goditi il tuo nuovo miniBB.