Install WordPress on Your Own .onion Domain and Hosting - TOR
Cloud Administrator
This video will show you How to install WordPress on your own TOR .Onion Domain and How to Host Deep Web on The Onion Network ( TOR )
Command:
yum update
yum -y install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
Since we are going to use php7.3, we will need to disable the installation of php5.4 using yum-config-manager command provided by yum-utils tool.
yum install yum-utils
yum-config-manager --disable remi-php54
yum-config-manager --enable remi-php73
Now we are ready to install all the required packages related to our LAMP stack using following command.
yum install httpd mariadb mariadb-server php php-common php-mysql php-gd php-xml php-mbstring php-mcrypt
systemctl start mariadb
mysql_secure_installation
Follow the instructions on the screen to answer the questions related to your MariaDB server security.
systemctl enable mariadb
systemctl start httpd
systemctl enable httpd
Creating WordPress MySQL Database
mysql -u root -p
Enter password:
Create database
CREATE DATABASE wordpress;
Creating new user
CREATE USER wordpress@localhost IDENTIFIED BY "P@ssw0rd";
Grant privileges to database
GRANT ALL ON wordpress.* TO wordpress@localhost;
FLUSH privileges
FLUSH PRIVILEGES;
Preparing WordPress Installation
cd /tmp && wget http://wordpress.org/latest.tar.gz
tar -xvzf latest.tar.gz -C /var/www/html
chown -R apache /var/www/html/wordpress
Installing Tor and Enabling .Onion Domain and Hosting
yum install tor
nano /etc/tor/torrc
systemctl start tor
systemctl enable tor
cat /var/lib/tor/hidden_service/hostname
systemctl restart httpd
30323101 Bytes