ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • E Package Apache2 Has No Installation Candidate Polls
    카테고리 없음 2020. 2. 15. 13:13

    OwnCloud provides data access using web interface. It also provides options to sync and share across devices—all under your control. Using ownCloud we can easily implement restrictions on file (ACLs) per user.

    OwnCloud provides its desktop clients (Windows, MAC, Linux) as well as mobile apps (Android and iPhone) to keep our data sync on your device.This tutorial will help you to install ownCloud 10 on Ubuntu 18.04 LTS & 16.04 LTS systems. Step 1 – Install LAMP ServerTo start setup with ownCloud, we first need to set up a running LAMP server. If you have already running LAMP stack skip this step else use followings commands to set up the LAMP on Ubuntu system. Install PHPInstall PHP 5.6 or higher version on your Debian system sudo apt-get install python-software-propertiessudo add-apt-repository ppa:ondrej/phpsudo apt-get updatesudo apt-get install -y php php-gd php-curl php-zip php-dom php-xml php-simplexml php-mbstringInstall Apache2 sudo apt-get install -y apache2 libapache2-mod-phpInstall MySQL sudo apt-get install -y mysql-server php-mysqlStep 2 – Download ownCloud SourceAfter successfully configuring lamp server on your system, Let’s download latest ownCloud from its. Cd /tmpwget extract downloaded archive under website document root and setup appropriate permissions on files and directories.

    E Package Apache2 Has No Installation Candidate Polls

    Cd /var/www/htmlsudo tar xjf /tmp/owncloud-10.0.7.tar.bz2sudo chown -R www-data:www-data owncloudsudo chmod -R 755 owncloudNow, remove the archive file. Sudo rm -f /tmp/owncloud-10.0.7.tar.bz2Step 3 – Create MySQL Database and UserAfter extracting code, let’s create a MySQL database and user account for configuring ownCloud. Use following set of command to login to MySQL server and create database and user.

    $ mysql -u root -pEnter password:mysql CREATE DATABASE owncloud;mysql GRANT ALL ON owncloud. to 'owncloud'@'localhost' IDENTIFIED BY 'password';mysql FLUSH PRIVILEGES;mysql quitStep 4 – Install ownCloud with Web InstallerNow access the ownCloud directory on a web browser as below. Change localhost to your server IP address or domain name. Localhost/owncloud/Enter new admin credentials to create an admin account and provide the location of the data folder.Now slide your page down and input the database credentials and click on Finish Setup.After completing setup you will get admin dashboard. Where you can create user, groups, assigned them permissions etc. Hi, Melvin,PHP5 is replaced by PHP-7.0. I’ve found a good work-through here, which I was able to set up very quickly.

    After starting from scratch several times (I mean, fresh install of OS, just to make sure everything was clean), this worked. I’m moving on to the step of actually installing OwnCloud, but I’ve got the SSL working and phpmyadmin set up (haven’t tried accessing https from outside my home network – which gave me a hang-up on previous attempts!

    E Package Apache2 Has No Installation Candidate Polls Online

    Anyway, you can see the tutorial here:. Forgot to say:1) On the step with the heading, “Installing MariaDB as MySQL replacement,” DO NOT follow the instructions to press Enter when you see the prompt, “Enter current password for root (enter for none):,” and the instructions are given, “. I’ve been having a problem installing owncloud on Mint 17.3. I followed the steps without a problem up until$ sudo chown -R apache.apache owncloud — I get invalid userI skipped the step as it wasn’t working for me. I continued on and when I try to start my cloud server I get the message“Can’t write into config directory!This can usually be fixed by giving the webserver write access to the config directory.”Any help would be appreciated. If you can dumb it down, that’d be great. I’m still in the linux learning phase.

    Installing Docker CE on Ubuntu 17.10 Artful AardvarkAs of, a release file for Ubuntu 17.10 Artful Aardvark is not available on.If you are used to installing Docker to your development machine with get-docker, that won't work either. So the solution is to install Docker CE from the zesty package. Sudo apt-get updatesudo apt-get install apt-transport-https ca-certificates curl software-properties-commoncurl -fsSL sudo apt-key add -sudo apt-key fingerprint 0EBFCD88sudo add-apt-repository 'deb arch=amd64 zesty stable'sudo apt-get updatesudo apt-get install docker-ce. For me, after installation, the docker service fails to start.

    This could be due to previous installs (I recently updated from 16.04 to 17.10 and reinstalled docker). In case others encounter this error: Nov 09 13:06:27 DV-X270 systemd1: Starting Docker Application Container Engine.Nov 09 13:06:27 DV-X270 docker11520: `docker daemon` is not supported on Linux. Please run `dockerd` directlyNov 09 13:06:27 DV-X270 systemd1: docker.service: Main process exited, code=exited, status=1/FAILUREThe fix is pretty simple: sudo sed -i 's/docker daemon/dockerd/' /etc/systemd/system/docker.servicesudo systemctl daemon-reloadsudo service docker start. Awesome!Went thru the same issue on installing Oracle Database on an older Docker version.Here's the error:The -start-period option for HEALTHCHECK got introduced in Docker 17.05-ce.

    Please upgrade to the latest Docker version, 17.06-ce on OL7.After the Docker uninstall, I got the error below by following Docker standard installation:Package docker-ce is not available, but is referred to by another package.This may mean that the package is missing, has been obsoleted, oris only available from another sourceE: Package 'docker-ce' has no installation candidateThis will fix the issue and now Oracle 12c database installation finishes successfully.Thanks!

Designed by Tistory.