Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Perfect World How to prepare your Machine for PW Servers (1 Viewer)

Administrator
Staff member
Website Administrator
Joined
Nov 30, 2023
Messages
48
For this tutorial, you need ubuntu, doesn't matter which version as long as you can connect to the internet, you'll be fine.

What you need in your own computer
SoftwareDescriptionDownload Links
Bitvise SSH ClientThe same as Winscp but better in my opinionDownload
Java/JDK-6Required by your server to be able to run properlyDownload
LibrariesLibraries required for your server to run properlyDownload

the code below assumes that you're using root as your user but if not, just add sudo before the commands

Code:
apt update
apt install -y apache2
apt install -y mysql-server
apt install -y php*
apt install phpmyadmin
dpkg --add-architecture i386
apt-get install libssl1.0.0 libssl-dev
apt-get install libstdc++6:i386
apt-get install libxml2:i386



Installing JDK-6

Code:
apt install ./zulu6.22.0.3-jdk6.0.119-linux_amd64.deb

CommandDescription
apt updatefetches the latest version of the package list from your distro's software repository.
apt install -y apache2installs apache2 ( web server) default directory is /var/www/html
apt install -y mysql-serverinstalls your mysql server
apt install -y php*installs PHP and any package that comes with it
apt install phpmyadmininstall phpmyadmin, which is a dashboard for modifying and creating databases
apt-get install libstdc++6:i386is used to add support for the 32-bit (i386) architecture on a system that runs a 64-bit architecture
apt-get install libxml2:i386used to install the 32-bit (i386) version of the "libxml2" library on a system
 
  • Like
Reactions: Rew
User
Joined
Aug 16, 2024
Messages
1
Hello sir, sorry, can you make a guide how to setup pw server step by step on Ubuntu?
 

Users who are viewing this thread

Translate Website

Top