This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# For ubuntu 16.04, ppa:ondrej/php repository also includes openssl > 1.1.0 which is incompatible with virtuoso. | |
# To build virtuoso, version 1.0.2 is needed which exists in the default ubuntu repos. | |
# Remove the repo above with | |
# sudo add-apt-repository --remove ppa:ondrej/php | |
# and re install openssl 1.0.2. After the compilation of virtuoso, you can upgrade the openssl version without breaking | |
# Virtuoso. | |
sudo apt-get update | |
sudo apt-get install autoconf automake libtool flex bison gperf gawk m4 make openssl libssl-dev | |
sudo apt-get install git wget curl libreadline-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Creates a database and a user and grants all previleges | |
# to the user. The name of the database, the user and the | |
# password are all passed as the first argument in the | |
# script. | |
# In order to run the script below, the root user must | |
# be able to login without password or the password | |
# must be set in the ~/.my.cnf file of the user that |