Jun
28
Change IP Address
Filed Under Configuration | Leave a Comment
To change IP address, you’ll need to edit /etc/network/interfaces
#sudo vi /etc/network/interfaces
Jun
28
Setup Admin Password
Filed Under Configuration | Leave a Comment
#sudo passwd root
#su
Jun
28
Secure MySQL
Filed Under Configuration | Leave a Comment
The default configuration has “root” with no password. The following shows you how to lock down MySQL by assigning a password to root and creating a super user with all privileges for administration use.
#sudo mysql -u root -p
Jun
28
Install phpMyAdmin
Filed Under Installation | Leave a Comment
#sudo apt-get install phpmyadmin
Jun
28
Install ProFTP
Filed Under Installation | Leave a Comment
Install ProFTP
#sudo apt-get install proftpd
Assign no shell access to ftp user. Add to end of file.
#sudo vi /etc/shells
/bin/false
Jun
28
Install PHP-5 GD Image Library
Filed Under Installation | Leave a Comment
Install PHP-5 GD Image Library
#sudo apt-get install php5-gd
Restart Apache after install
#sudo /etc/init.d/apache2 restart
Jun
27
Install SSH Server
Filed Under Installation | Leave a Comment
#sudo apt-get install openssh-server
Jun
27
Start Stop MySQL
Filed Under Start Stop | Leave a Comment
#sudo /etc/init.d/mysql start
#sudo /etc/init.d/mysql stop
#sudo /etc/init.d/mysql restart
Jun
27
Start Stop Apache
Filed Under Start Stop | Leave a Comment
#sudo /etc/init.d/apache2 start
#sudo /etc/init.d/apache2 stop
#sudo /etc/init.d/apache2 restart
Jun
27
Start Stop Network
Filed Under Start Stop | Leave a Comment
#sudo /etc/init.d/networking start
#sudo /etc/init.d/networking stop
#sudo /etc/init.d/networking restart