Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I was able to set up a LAMP on Arch Linux. Now I’m trying to install wordpress on it using SSH, but it keeps on failing. Is there a way to access my new LAMP server using a FTP client? Can you help me out here what steps to take?
Hi,
You would need to install an FTP server in order to be able to access your server via an FTP account.
However, you should be able to install Wordpress using SSH and we have some articles that can help you with that: https://www.digitalocean.com/community/articles/how-to-install-wordpress-on-centos-6--2
This is for CentOS but the majority of things should be very similar.
If you are running into a particular problem paste us your error messages and we’ll help you troubleshoot it.
Arch Linux has moved to use systemd instead of init so rc.d method for starting MySQL daemon will not work when pacman -Syu has been used right after a new droplet has been set up.
So the solution goes like this:
pacman -Sy to update the repository database
replace pacman
pacman -S mysql
pacman -S glibc (needs to be renewed or the MySQL daemon won’t start)
making the folder needed for MySQL logs: mkdir /var/log/mysql chown mysql:mysql /var/log/mysql chmod 750 /var/log/mysql
editing /etc/mysql/my.cnf
[mysqld_safe] log-error=/var/log/mysql/error.log
[mysqld] log-error=/var/log/mysql/error.log
This guide is a bit out-dated, systemd has replaced sysvinit/initscripts. Daemons do not go in rc.conf anymore, but are handled by systemd. See https://wiki.archlinux.org/index.php/Systemd
As of 2013-03-25 mysql is no longer an offical package for Arch, see https://www.archlinux.org/news/mariadb-replaces-mysql-in-repositories/ for the announcement.
You must update the command “sudo pacman -S mysql” to “sudo pacman -S mariadb” because Arch Linux didn’t use MySQL from time ago.
I am not able to locate the ip address of my virtualbox.ifconfig|grep inet is giving 10.0.2.15 after installing apache I would like to see index page from my windows7 explorer. How I would do this