Skip to main content

Posts

Showing posts from March, 2024

How to install Nginx Proxy Manager on proxmox 8.3.2 container

How to install Webmin on Ubuntu server 20.04

Commands used to install :  sudo apt update sudo apt install software-properties-common apt-transport-https wget -q http://www.webmin.com/jcameron-key.asc -O- | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] http://download.webmin.com/download/repository sarge contrib" sudo apt install webmin https://your_server_ip:10000

How to install Wordpress on Ubuntu server 22.04

Video Training Commands : sudo apt update sudo apt install apache2 sudo apt install mysql-server sudo mysql_secure_installation sudo apt install php libapache2-mod-php php-mysql sudo systemctl restart apache2 sudo mysql    CREATE DATABASE wordpress;    CREATE USER 'wordpressuser'@'localhost' IDENTIFIED BY 'password';    GRANT ALL PRIVILEGES ON wordpress.* TO 'wordpressuser'@'localhost';    FLUSH PRIVILEGES;    EXIT;     cd /tmp curl -LO https://wordpress.org/latest.tar.gz tar xzvf latest.tar.gz cp /tmp/wordpress/wp-config-sample.php /tmp/wordpress/wp-config.php sudo nano /tmp/wordpress/wp-config.php (Update the username, database name and the password in the config file)     define( 'DB_NAME', ' wordpress ' );     define( 'DB_USER', ' wordpressuser ' );     define( 'DB_PASSWORD', ' password ' );      sudo rsync -avP /tmp/wordpress/ /var/www/html/      sudo cho...