美文网首页
Jenkins 学习

Jenkins 学习

作者: 邦_ | 来源:发表于2023-10-24 09:24 被阅读0次

    中文网址

    
    https://www.jenkins.io/zh/
    
    
    截屏2023-10-25 09.21.55.png

    安装完成之后控制台输出

    
    To enable PHP in Apache add the following to httpd.conf and restart Apache:
        LoadModule php_module /usr/local/opt/php/lib/httpd/modules/libphp.so
    
        <FilesMatch \.php$>
            SetHandler application/x-httpd-php
        </FilesMatch>
    
    Finally, check DirectoryIndex includes index.php
        DirectoryIndex index.php index.html
    
    The php.ini and php-fpm.ini file can be found in:
        /usr/local/etc/php/8.2/
    
    To start php now and restart at login:
      brew services start php
    Or, if you don't want/need a background service you can just run:
      /usr/local/opt/php/sbin/php-fpm --nodaemonize
    ==> rabbitmq
    Management Plugin enabled by default at http://localhost:15672
    
    To start rabbitmq now and restart at login:
      brew services start rabbitmq
    Or, if you don't want/need a background service you can just run:
      CONF_ENV_FILE="/usr/local/etc/rabbitmq/rabbitmq-env.conf" /usr/local/opt/rabbitmq/sbin/rabbitmq-server
    
    

    通过 homebrew安装的jenkins 在

    
    /usr/local/Cellar/jenkins-lts
    
    

    工作空间在

    
    cd ~/.jenkins/workspace
    
    

    jenkins图标收集


    Jenkins-stop-the-war.png
    fire-jenkins.png

    相关文章

      网友评论

          本文标题:Jenkins 学习

          本文链接:https://www.haomeiwen.com/subject/qszdidtx.html