askub

Member
Registered
Joined
Jan 29, 2020
Messages
22
Points
13

Reputation:

How to install vbulletin on dedicated server or vps, where the operating system is linux / ubuntu.
in most cases you can search online but there is nothing specific about how it can be done. I tried to bring something to simplify your research :)

Step-by-step actions you will have illustrated with photos:

First open terminal and install Apache2

1588146898572.png


Code:
sudo apt-get install apache2

Check your web server in your browser by typing http://localhost or 127.0.0.1:80 if it works correctly

1588146984081.png



in the next step we will install php5
Code:
sudo apt-get install php5 libapache2-mod-php5

1588147128012.png



also we need client/server MySQL database :

Code:
sudo apt-get install mysql-client

1588147236065.png


and install mysql server

Code:
sudo apt-get install mysql-server

1588147281169.png


let’s try to change the old password to a new database password. you can set a password that you would like to enter:

1588147466743.png


we will now start the web server:
1) start 2) stop 3) restart


1588147544950.png


database management.
In order to login in to a database you should type this string mysql -u your-domain-name-in-linux -p
if you'd like to test your database you should type this one: show databases;

1588147585566.png


Code:
Then create a database called db

CREATE DATABASE db;

Create a database user called dbuser with new password

CREATE USER 'dbuser'@'localhost' IDENTIFIED BY 'new_password_here';

Then grant the user full access to the database.

GRANT ALL ON db.* TO 'dbuser'@'localhost' IDENTIFIED BY 'user_password_here' WITH GRANT OPTION;

Finally, save your changes and exit.

then we will go to the files and change the config.php.new to config.php and edit it:
which is located in /var/www/html/ your directory /upload/includes

1588147884525.png


enter the url just as it is written in the address bar in a web browser and try to start the installation process

1588147930565.png


You just have to change the title and email address to whatever you want


1588147946863.png



skip it

1588147963263.png


Set up your admin account

1588147986143.png


This means you should remove the install folder from the /forum folder

1588148003751.png


cd /var/www/html/forum and then find the directory 'install' and remove it by typing rm -rf

1588148020404.png


Refresh your web browser and try to login to admin panel

1588148037675.png


Congratulations on your achievement!


1588148050899.png
 
Top