Skip to content

Instantly share code, notes, and snippets.

@abarth500
Last active December 16, 2015 10:19
Show Gist options
  • Save abarth500/5418891 to your computer and use it in GitHub Desktop.
Save abarth500/5418891 to your computer and use it in GitHub Desktop.
[情報科学科実験I] サーバの起動
#Webサーバ起動
sudo systemctl enable httpd.service
sudo systemctl start httpd.service
#データベースサーバ(mysql)起動
sudo systemctl enable mariadb.service
sudo systemctl start mariadb.service
#SSHD起動
sudo systemctl enable sshd.service
sudo systemctl start sshd.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment