• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Linux Installing Database/Phpmyadmin

Glecko

Veteran OT User
Joined
Aug 21, 2007
Messages
1,054
Reaction score
270
Location
Spain
I recently installed Ubuntu (newest version) on my dedicated server, and, since I am new to this world, I am having sick trouble installing Apache and everything related to it. I followed all guides I could find on otland and used the search function for days now, but nothing solves my problem. Tfs is already compiled and works, but I cannot start it because database does not exist.
Everytime I try to enter localhost/phpmyadmin (after having followed the steps of one of the thousand tutorials I looked) I get the error 404 (for /phpmyadmin) or 403 (for localhost). I can guarantee I tried EVERYTHING.
So please, could anybody give me a serie of commands that actually work? I'm using Ubunt 11.04 (I already upgrades/updated all packages).


Thanks a lot in advance :)
(Ofc giving infinite rep for anyone who solves it :D)
 
This should work atleast, Worked for me :)

Code:
sudo apt-get install mysql-server

(It will now ask you for the a password for the root user)


sudo apt-get install lighttpd php5-cgi
sudo lighty-enable-mod fastcgi


sudo apt-get install phpmyadmin
 
I fail at this "sudo lighty-enable-mod fastcgi"
I get some weird error. Maybe newest ubuntu version needs a special command?
 
I fail at this "sudo lighty-enable-mod fastcgi"
I get some weird error. Maybe newest ubuntu version needs a special command?

I will try to find a solution for you. You can try to install Apache2 or Nginx.
 
I think this should work because sudo lighty-enable-mod fastcgi is kinda outdated.

Code:
sudo apt-get install mysql-server

(It will now ask you for the a password for the root user)


sudo apt-get install lighttpd php5-cgi

sudo lighty-enable-mod fastcgi fastcgi-php 


sudo apt-get install phpmyadmin
 
Back
Top