server linux image
Connor
Hey, I'm already running a Minecraft server on a seperate ubuntu machine upstairs but now I want to run a bukkit server. I've seen the tuturial of putting the file in a folder and using shell to copy that code to run it, but how do I use shell. And secondly, how do I add plugins to a ubuntu bukkit server. Thanks.
Answer
Its really easy, all you have to do is drag the plugins .jar file into the "Plugins" folder. It will automatically install the plugin. To use the shell, double-click it.
Go here if you need more help:
http://wiki.bukkit.org/Setting_up_a_server
Its really easy, all you have to do is drag the plugins .jar file into the "Plugins" folder. It will automatically install the plugin. To use the shell, double-click it.
Go here if you need more help:
http://wiki.bukkit.org/Setting_up_a_server
How do you run apache web server in linux?
successful
Hey guys,
I'm a newby and getting started with linux for the first time. I'm reading the book, "Beginning PHP 5.3", and it keeps mentioning to start programs, I need to go to "System -> Administration" etc. I don't know where to find "System". Can someone help me located where "System" is? I am trying to run the apache web server; already ran the synaptic package manager and installed apache from there. Thanks in advanced.
Eric
Answer
It's running, linux generally uses text files to configure things as opposed to GUI programs, so there's no menu or wizard anywhere to configure it as there would be on for Windows programs. Go to 'localhost' in your web browser and if you see "It works!" then apache is working and running on your system.
Usually web files will go in /var/www/, so if you put test1.html in that folder then you can see it at
http://localhost/test1.html
Make sure php is also installed and just place all your web files in that folder.
It's running, linux generally uses text files to configure things as opposed to GUI programs, so there's no menu or wizard anywhere to configure it as there would be on for Windows programs. Go to 'localhost' in your web browser and if you see "It works!" then apache is working and running on your system.
Usually web files will go in /var/www/, so if you put test1.html in that folder then you can see it at
http://localhost/test1.html
Make sure php is also installed and just place all your web files in that folder.
How to make an Apache Server using Linux?
Daniel
Hi I am using linux debian on an old imac g3. I have gotten the web server up to a point where I can see the 'It Works' page but now what? I want to add Joomla to it but I don't know how to make it load like cpanel does. Help!
Answer
a) Download Joomla
[code]
cd /var/www
sudo wget -c http://joomlacode.org/gf/download/frsrelease/14659/64120/Joomla_1.6.3-Stable-Full_Package.zip
sudo unzip Joomla_1.6.3-Stable-Full_Package.zip
sudo rm index.html
sudo chown -R www-data:www-data *
[/code]
b) Setup MySQL & phpmyadmin
[code]
sudo apt-get install mysql-server
sudo wget -c http://iweb.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.3.10/phpMyAdmin-3.3.10-all-languages.tar.gz
sudo tar xvfz phpMy*
sudo mv phpMy* phpmyadmin
sudo chown -R www-data:www-data phpmyadmin
sudo mv phpmyadmin/config.sample.inc.php phpmyadmin/config.inc.php
sudo nano phpmyadmin/config.inc.php
[/code]
During the installation, it will ask you for the mysql password. set it, and remember it.
Now,
At this point, add something to the part where it says you need to add something for blowfish authentication. Just type a whole load of random characters.
Press Control + X to save.
visit http://< web server address >/phpmyadmin
login with username 'root' and the password you set before.
Create a new database named "joomla"
Now, visit http://< web server address >
Your database name is the one you just created.
User is "root"
password is the password that you set.
Its not exactly secure to use the root account, but as your only using it for personal purposes, it doesn't matter much.
a) Download Joomla
[code]
cd /var/www
sudo wget -c http://joomlacode.org/gf/download/frsrelease/14659/64120/Joomla_1.6.3-Stable-Full_Package.zip
sudo unzip Joomla_1.6.3-Stable-Full_Package.zip
sudo rm index.html
sudo chown -R www-data:www-data *
[/code]
b) Setup MySQL & phpmyadmin
[code]
sudo apt-get install mysql-server
sudo wget -c http://iweb.dl.sourceforge.net/project/phpmyadmin/phpMyAdmin/3.3.10/phpMyAdmin-3.3.10-all-languages.tar.gz
sudo tar xvfz phpMy*
sudo mv phpMy* phpmyadmin
sudo chown -R www-data:www-data phpmyadmin
sudo mv phpmyadmin/config.sample.inc.php phpmyadmin/config.inc.php
sudo nano phpmyadmin/config.inc.php
[/code]
During the installation, it will ask you for the mysql password. set it, and remember it.
Now,
At this point, add something to the part where it says you need to add something for blowfish authentication. Just type a whole load of random characters.
Press Control + X to save.
visit http://< web server address >/phpmyadmin
login with username 'root' and the password you set before.
Create a new database named "joomla"
Now, visit http://< web server address >
Your database name is the one you just created.
User is "root"
password is the password that you set.
Its not exactly secure to use the root account, but as your only using it for personal purposes, it doesn't matter much.
Powered by Yahoo! Answers
No comments:
Post a Comment