Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,670 for systemd (0.21 sec)

  1. pom.xml

    		<packaging.fess.group>fess</packaging.fess.group>
    		<packaging.fess.pid.dir>/var/run/fess</packaging.fess.pid.dir>
    		<packaging.fess.systemd.dir>/usr/lib/systemd/system</packaging.fess.systemd.dir>
    		<packaging.fess.systemd.sysctl.dir>/usr/lib/sysctl.d</packaging.fess.systemd.sysctl.dir>
    		<packaging.fess.tmpfilesd.dir>/usr/lib/tmpfiles.d</packaging.fess.tmpfilesd.dir>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Apr 22 12:06:58 GMT 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/packaging/common/scripts/postinst

    esac
    
    if [ "x$IS_UPGRADE" != "xtrue" ]; then
        if command -v systemctl >/dev/null; then
            echo "### NOT starting on installation, please execute the following statements to configure fess service to start automatically using systemd"
            echo " sudo systemctl daemon-reload"
            echo " sudo systemctl enable fess.service"
            echo "### You can start fess service by executing"
            echo " sudo systemctl start fess.service"
    
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Viewed (0)
  3. src/packaging/deb/scripts/conffiles

    ${packaging.env.file}
    /etc/init.d/fess
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 76 bytes
    - Viewed (0)
  4. cmd/signals.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"errors"
    	"net/http"
    	"os"
    	"strings"
    
    	"github.com/coreos/go-systemd/v22/daemon"
    	"github.com/minio/minio/internal/logger"
    )
    
    func handleSignals() {
    	// Custom exit function
    	exit := func(success bool) {
    		// If global profiler is set stop before we exit.
    		globalProfilerMu.Lock()
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/packaging/common/scripts/prerm

            if command -v invoke-rc.d >/dev/null; then
                invoke-rc.d fess stop || true
            else
                /etc/init.d/fess stop || true
            fi
    
        # older suse linux distributions do not ship with systemd
        # but do not have an /etc/init.d/ directory
        # this tries to start the fess service on these
        # as well without failing this script
        elif [ -x /etc/rc.d/init.d/fess ] ; then
    Plain Text
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 29 07:34:32 GMT 2018
    - 1.7K bytes
    - Viewed (1)
  6. LICENSES/vendor/github.com/coreos/go-systemd/v22/LICENSE

    "submitted" means any form of electronic, verbal, or written communication sent
    to the Licensor or its representatives, including but not limited to
    communication on electronic mailing lists, source code control systems, and
    issue tracking systems that are managed by, or on behalf of, the Licensor for
    the purpose of discussing and improving the Work, but excluding communication
    that is conspicuously marked or otherwise designated in writing by the copyright
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Jun 16 15:14:16 GMT 2021
    - 10.2K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/concepts.md

    * The **file** that can be **executed** by the operating system, for example: `python`, `python.exe` or `uvicorn`.
    * A particular program while it is **running** on the operating system, using the CPU, and storing things on memory. This is also called a **process**.
    
    ### What is a Process
    
    The word **process** is normally used in a more specific way, only referring to the thing that is running in the operating system (like in the last point above):
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18K bytes
    - Viewed (0)
  8. docs/ru/docs/deployment/concepts.md

    ### Примеры инструментов, управляющих запуском программ
    
    Вот несколько примеров, которые могут справиться с такой задачей:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker в режиме Swarm
    * Systemd
    * Supervisor
    * Использование услуг облачного провайдера
    * Прочие...
    
    Я покажу Вам некоторые примеры их использования в следующих главах.
    
    ## Перезапуск
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  9. docs/de/docs/deployment/concepts.md

    ### Beispieltools zur Ausführung beim Hochfahren
    
    Einige Beispiele für Tools, die diese Aufgabe übernehmen können, sind:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker im Schwarm-Modus
    * Systemd
    * Supervisor
    * Es wird intern von einem Cloud-Anbieter im Rahmen seiner Dienste verwaltet
    * Andere ...
    
    In den nächsten Kapiteln werde ich Ihnen konkretere Beispiele geben.
    
    ## Neustart
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Mar 30 20:16:25 GMT 2024
    - 20.6K bytes
    - Viewed (0)
  10. Makefile

    	@wget -q -c https://github.com/minio/pkger/releases/download/v2.2.9/pkger_2.2.9_linux_amd64.deb
    	@wget -q -c https://raw.githubusercontent.com/minio/minio-service/v1.0.1/linux-systemd/distributed/minio.service
    	@sudo apt install ./pkger_2.2.9_linux_amd64.deb --yes
    	@mkdir -p minio-release/$(GOOS)-$(GOARCH)/archive
    	@cp -af ./minio minio-release/$(GOOS)-$(GOARCH)/minio
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 21:55:41 GMT 2024
    - 10.3K bytes
    - Viewed (1)
Back to top