投稿時間:2023-07-22 06:15:38 RSSフィード2023-07-22 06:00 分まとめ(17件)

カテゴリー等 サイト名等 記事タイトル・トレンドワード等 リンクURL 頻出ワード・要約等/検索ボリューム 登録日
海外TECH DEV Community AWS IAM: Creating an IAM User for Access Management https://dev.to/arbythecoder/aws-iam-creating-an-iam-user-for-access-management-53be AWS IAM Creating an IAM User for Access ManagementWelcome to Week of my AWS immersion journey In this exciting week we will dive into the world of AWS Identity and Access Management IAM where we ll take control of access to our AWS resources and enforce strong security controls Let s start by creating an IAM user that will have access to our AWS account Table of ContentsStep Create an AWS AccountStep Create an IAM UserStep Assign Administrator Role to the IAM UserStep Ready to Explore IAM Step Create an AWS AccountIf you already have an AWS account feel free to skip this step If not head over to the AWS website and click on Sign In to the Console to create a new AWS account Follow the on screen instructions provide the required information and you ll have your AWS account ready in no time Create a new AWS account if you haven t done so already Step Create an IAM UserOnce you have your AWS account set up it s time to create an IAM user with Administrator privileges This will allow the IAM user to manage and access the AWS account Log in to your AWS account using the AWS Management Console In the AWS Management Console navigate to the IAM service by clicking on Services in the top menu and then selecting IAM from the Security Identity amp Compliance section In the IAM console click on Users in the left sidebar and then click on Add user to create a new IAM user Enter a User name for the IAM user for example Administrator Tick the Provide user access to the AWS Management Console checkbox This will allow the IAM user to access the AWS Management Console with the provided credentials Choose Programmatic access and AWS Management Console access options This will enable both access types for the IAM user For the password choose Custom password and enter a password of your choice Make sure to write it down or copy it somewhere safe for later use Uncheck the Users must create a new password at next sign in checkbox This is for simplifying the learning process in this lab However in real world scenarios it s a good practice to enforce password changes periodically Click on Next Permissions to proceed to the next step Step Assign Administrator Role to the IAM UserNow that we ve created the IAM user it s time to assign the Administrator role to it The Administrator role grants full access to all AWS services and resources within the AWS account On the Set permissions page choose Add user to group and select Admin from the list of existing groups The Admin group has AdministratorAccess policy attached to it providing full access to AWS resources Click on Next Tags and proceed to the next step Tags are optional and can be used to categorize IAM users for better organization Click on Next Review to review the IAM user s configuration Review the settings and if everything looks good click on Create user to create the IAM user Congratulations You ve successfully created an IAM user with Administrator privileges Make sure to securely store the IAM user s credentials for future use Ready to Explore IAMNow that we have our IAM user with Administrator privileges set up we are ready to dive deeper into AWS IAM In the upcoming labs you ll have the opportunity to explore IAM policies implement multi factor authentication MFA and integrate IAM with other AWS services on your own This hands on experience will empower you to discover the full potential of IAM and customize it to suit your specific needs Remember the AWS platform offers a vast array of resources documentation and tutorials to help you along the way Don t hesitate to explore and experiment with AWS IAM to gain a deeper understanding of access management and security in the cloud Stay tuned for more exciting adventures in the world of AWS IAM I ll be sharing my personal insights and experiences as I continue to uncover the possibilities this powerful service has to offer If you have any questions discoveries or insights of your own feel free to share them in the comments below Let s continue this journey of learning and growth together Don t forget to connect with me on LinkedIn and Twitter to follow my AWS journey and share your own experiences Together we can make this cloud adventure go viral and engage with the AWS community worldwide Keep exploring fellow cloud adventurers See you in the next post Happy cloud computing ️ 2023-07-21 20:41:33
海外TECH DEV Community Installing WordPress in a LAMP server https://dev.to/sarahcssiqueira/installing-wordpress-in-a-lamp-server-4542 Installing WordPress in a LAMP serverAlthough I had done this procedure several times through the years before I have never documented it until now That s another of those posts where my main goal is to register for my future reference and avoid spending lots of time googling to remember With some hope this can somehow help someone else too This approach requires more steps than a ready made WordPress installation as the ones provided by the majority of web hosts but it also offers greater control over the WordPress environment RequirementsAcessing your serverVirtual HostMySQLCreate DatabaseCreate UserGrant User PrivilegesPHPEnable htacess overridesEnable rewrite moduleGet the WordPress CoreThe wp configPermissionsSalt KeysDatabase CredentialsFinish installation through your preferred browser RequirementsLAMP Linux Apache MySQL and PHP server A server architecture that supports WordPress by providing the Linux Apache web server MySQL database and PHP I wrote about how to set a LAMP server on Digital Ocean here the process is quite similar to any other VPS SSL WordPress takes in user input and stores user data so it is very important to have a layer of security Supposing you already have a LAMP server with an SSL let s start installing WordPress Accessing your serverLogin to your server through your preferred terminal with ssh i keypub username ip Virtual HostYou can have multiple WordPress installations running on the same web server the decision if it is worth it in terms of performance hardware resources and traffic is completely out of the scope of this article I am just pointing out the possibility How to set a virtual host on Apache is covered here MySQLWordPress uses MySQL to manage and store site and user information In a LAMP stack we have MySQL installed already but we need to make a database and a user for WordPress to use Log into the MySQL root note that this is not the root user of your server with the command mysql u root p Create the databaseWe can create an exclusive database for WordPress to control We can call this whatever we want in this guide I am using the name wp database CREATE DATABASE wp database DEFAULT CHARACTER SET utf COLLATE utf unicode ci Create an userWe also need to create an user wp user and set a password to access the database we created Choose a strong password CREATE USER wp user IDENTIFIED WITH mysql native password BY your strong password Grant privileges to this userWe need to let the database we just created know that our wordpressuser should have complete access to the database for that we set up GRANT ALL ON wp database TO wp user with this new user password and database we made specifically for WordPress now need to flush the privileges so that the current instance of MySQL knows about those recent changes FLUSH PRIVILEGES The MySQL job is done it is time to exit MySQL by typing EXIT PHPSome PHP extensions for WordPress plugins are required for our server By setting up a LAMP server we only need some very minimal set of extensions to get PHP to communicate with MySQL Install some of the most popular PHP extensions for use with WordPress sudo apt updatesudo apt install php curl php gd php mbstring php xml php xmlrpc php soap php intl php zipRestart Apache to load these new extensions sudo systemctl restart apache Enable htacess overridesTo allow htaccess files we need to set the AllowOverride directive within a Directory block pointing to our document root Add the following block of text inside the VirtualHost block in your configuration file making sure to use the correct web root directory sudo nano etc apache sites available domain name com confThen add the following to the file lt Directory var www your domain com gt AllowOverride All lt Directory gt When you are finished save and close the file Enable rewrite moduleNext enable mod rewrite so that we can utilize the WordPress permalink feature sudo aenmod rewriteThis will allow you to have more human readable permalinks to your posts Make sure there are not any syntax errors by running the following test sudo apachectl configtestExpected output OutputSyntax OKRestart Apache to implement the changes sudo systemctl restart apache Get the WordPress CoreNow that our server software is configured we can download and set up WordPress For security reasons in particular it is always recommended to get the latest version of WordPress from their site Change into a writable directory like tmp and download the compressed release cd tmpcurl O Extract the compressed file to create the WordPress directory structure tar xzvf latest tar gzCopy over the sample configuration file to the filename that WordPress reads cp tmp wordpress wp config sample php tmp wordpress wp config phpCreate the upgrade directory so that WordPress won t run into permissions issues when trying to do this on its own mkdir tmp wordpress wp content upgradeCopy the entire contents of the directory into our document root sudo cp a tmp wordpress var www wordpressEnsure to replace the var www wordpress directory with the directory on your server PermissionsWe need to accomplish is setting up reasonable file permissions and ownership Give ownership of all the files to the www data user and group sudo chown R www data www data var www wordpressNext set the correct permissions on the WordPress directories and files sudo find var www wordpress type d exec chmod sudo find var www wordpress type f exec chmod The wp configSome changes are required to the main WordPress configuration file Salt KeysWe need to adjust the secret keys to provide a level of security for our installation WordPress provides a secure key generator for these secure values type curl s You will get back unique values you must request unique values each time The secure values provided for the WordPress secure key generator will look similar to this define AUTH KEY put your unique phrase here define SECURE AUTH KEY put your unique phrase here define LOGGED IN KEY put your unique phrase here define NONCE KEY put your unique phrase here define AUTH SALT put your unique phrase here define SECURE AUTH SALT put your unique phrase here define LOGGED IN SALT put your unique phrase here define NONCE SALT put your unique phrase here Copy and paste your salt keys directly into your wp config php filesudo nano var www wordpress wp config phpOn wp config php replace the section below with the values you got from the WordPress secure key generatordefine AUTH KEY VALUES COPIED FROM THE COMMAND LINE define SECURE AUTH KEY VALUES COPIED FROM THE COMMAND LINE define LOGGED IN KEY VALUES COPIED FROM THE COMMAND LINE define NONCE KEY VALUES COPIED FROM THE COMMAND LINE define AUTH SALT VALUES COPIED FROM THE COMMAND LINE define SECURE AUTH SALT VALUES COPIED FROM THE COMMAND LINE define LOGGED IN SALT VALUES COPIED FROM THE COMMAND LINE define NONCE SALT VALUES COPIED FROM THE COMMAND LINE Database CredentialsWe also need to update some of the database credentials like te database name the database user and the associated password that we configured previously within MySQL MySQL settings You can get this info from your web host The name of the database for WordPress define DB NAME wordpress MySQL database username define DB USER wordpressuser MySQL database password define DB PASSWORD password MySQL hostname define DB HOST localhost Database Charset to use in creating database tables define DB CHARSET utf The Database Collate type Don t change this if in doubt define DB COLLATE Finish installation through browserNow we can complete the installation through the web interface For that navigate to your server s domain name or public IP address You should find this screen And that s it 2023-07-21 20:27:02
海外TECH DEV Community Top 7 AI Open Source Projects to Contribute to in 2023 ⭐ https://dev.to/thenomadevel/top-7-ai-open-source-projects-to-contribute-to-in-2023-3ff5 Top AI Open Source Projects to Contribute to in Hey there Nomadev here If you re reading this you re probably as excited about AI and open source as I am As an AI Tool Guru and enthusiast I m always on the lookout for cool projects to contribute to and learn from And guess what I ve found some gems that I think you ll love So whether you re a seasoned developer or a newbie looking to dip your toes in the world of AI this list is for you Let s dive in Llama by Meta and MicrosoftLlama is the next generation of Meta s open source large language model It s free for research and commercial use making it a great project to contribute to →Large community support from both Meta and Microsoft →Good for those interested in large language models and natural language processing →Requires knowledge of Python and machine learning concepts →Opportunity to contribute to a project that s at the forefront of AI research DeepChemDeepChem aims to provide a high quality open source toolchain that democratizes the use of deep learning in drug discovery materials science quantum chemistry and biology →Ideal for those interested in the intersection of AI and chemistry biology →Active community and well maintained project →Good understanding of deep learning chemistry biology and Python is required DetectronDetectron is Facebook AI Research s next generation software system that implements state of the art object detection algorithms It is a ground up rewrite of the previous version Detectron and it originates from maskrcnn benchmark →Backed by Facebook AI Research ensuring a large and active community →Ideal for those interested in object detection algorithms and computer vision →Requires knowledge of Python PyTorch and understanding of deep learning concepts →Opportunity to contribute to a project that s pushing the boundaries of computer vision TheanoTheano is a Python library that lets you define optimize and evaluate mathematical expressions especially ones with multi dimensional arrays numpy ndarray →Supported by a large community of machine learning enthusiasts →Good for those interested in mathematical computations and multi dimensional arrays →Requires knowledge of Python and NumPy →A chance to contribute to a project that s widely used in the machine learning community MXNetApache MXNet is an open source deep learning software framework used to train and deploy deep neural networks It is known for its capabilities in handling multiple data formats →Backed by Apache ensuring a large community support →Ideal for those interested in deep learning and handling multiple data formats →Requires knowledge of Python and deep learning concepts →Opportunity to contribute to a project that s used by many in the AI industry OpenCVOpenCV Open Source Computer Vision Library is an open source computer vision and machine learning software library OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in commercial products →Large community of developers interested in computer vision and machine learning →Good for those interested in real time computer vision applications →Requires knowledge of C Python and understanding of computer vision concepts →A chance to contribute to a project that s widely used in the computer vision industry HuggingFace TransformersTransformers provides thousands of pretrained models to perform tasks on texts such as classification information extraction answer extraction summarization translation text generation etc in languages Its aim is to make cutting edge NLP easier to use for everyone →Supported by HuggingFace a leading company in natural language processing →Ideal for those interested in NLP tasks such as classification information extraction summarization etc →Requires knowledge of Python PyTorch or TensorFlow and understanding of NLP concepts →Opportunity to contribute to a project that s making NLP more accessible to everyone And that s a wrap These are some of the most exciting AI open source projects you can contribute to in Remember contributing isn t just about coding It s about learning growing and being part of a community that s shaping the future of AI So don t be shy Jump in and make your mark If you re as into AI and open source as I am make sure to follow me on Twitter thenomadevel I share all sorts of AI related content and updates about the latest tools and projects Can t wait to see you there Are you tired of the daily commute and ready to take your career to the next level with a remote job Look no further The Remote Job Hunter s Handbook is here to guide you through the process of finding and landing your dream work from home opportunity With practical tips and real life examples this ebook covers everything you need to know about the remote job search including how to Identify the best remote job opportunities for your skills and experienceTailor your resume and cover letter for a remote job applicationNetwork and connect with remote employersPrepare for and ace virtual interviewsOnboard and thrive in your new remote roleDon t miss out on this valuable resource for anyone looking to join the growing number of professionals working remotely Get your copy of The Remote Job Hunter s Handbook today only on Gumroad 2023-07-21 20:19:43
Apple AppleInsider - Frontpage News 'La Maison' on Apple TV+ sets the stage for French high fashion https://appleinsider.com/articles/23/07/21/la-maison-on-apple-tv-sets-the-stage-for-french-high-fashion?utm_medium=rss x La Maison x on Apple TV sets the stage for French high fashionAs an ongoing writers and actors strike continues in the United States Apple TV unveils a brand new French drama heading to the streaming service Apple TV logoApple TV has officially announced La Maison which is a new family drama that is currently filming in and around Paris The first season will consist of one hour episodes and will take a look at a contemporary French iconic fashion house Read more 2023-07-21 20:53:07
Apple AppleInsider - Frontpage News Spotify raising premium plan prices in US to try to stay profitable https://appleinsider.com/articles/23/07/21/spotify-raising-premium-plan-prices-in-us-to-try-to-stay-profitable?utm_medium=rss Spotify raising premium plan prices in US to try to stay profitableAfter years of on again off again profits and losses Spotify is raising its subscription price for U S subscribers by in hopes of staying in the black Credit SpotifyWhile the change hasn t been announced yet the cost of Spotify s ad free premium plan will jump to monthly up from monthly for U S subscribers This marks the company s first price hike since its introduction Read more 2023-07-21 20:44:29
Apple AppleInsider - Frontpage News Samsung leaks that Apple is still working on an all-screen foldable MacBook Pro https://appleinsider.com/articles/23/07/21/samsung-spills-the-beans-apple-is-still-working-on-an-all-screen-foldable-macbook-pro?utm_medium=rss Samsung leaks that Apple is still working on an all screen foldable MacBook ProRumors have been swirling for a while that Apple is working on a large all screen folding MacBook Pro but the current state of the folding display technology may be the primary issue Apple is waiting to launch anything MacBook ProAt the beginning of it was rumored Apple was developing a large foldable display measuring upwards of inches that would use a touchscreen keyboard for input At the time it was expected this device would either be a MacBook or an iPad Read more 2023-07-21 20:22:25
海外TECH Engadget Google rolls out Android app streaming to Chromebooks following beta https://www.engadget.com/google-rolls-out-android-app-streaming-to-chromebooks-following-beta-203014704.html?src=rss Google rolls out Android app streaming to Chromebooks following betaYou no longer need to try a beta to stream Android apps on your Chromebook Google has released a Chrome OS M update that makes Android app streaming available to many more people If you have Phone Hub enabled you can run an Android app directly from your mobile device rather than installing it on the computer The update allows you to reply to a message or check your lunch delivery without the distraction of reaching for your handset The feature is still limited to a handful of Android capable phones from Google and Xiaomi From Google you ll need a Pixel a or later Xiaomi fans meanwhile need at least a T Both your Chromebook and phone must be on the same WiFi network and physically close by Some networks might not support the feature but you can use Chrome OS Instant Tethering to establish a link if need be As during the beta you won t want to use app streaming for games or other intensive Android apps This is more for responding to notifications than any serious commitment ーyou ll still want to install apps for that It gives Chromebooks some of the phone integration you find in macOS and Windows though and may help you stay focused while you work The M upgrade also lets you sign PDF documents and save signatures to use later Google has also redesigned the keyboard oriented Shortcut app with a new interface and easier in app search This article originally appeared on Engadget at 2023-07-21 20:30:14
海外TECH Engadget Amazon is reportedly making employees relocate for return-to-office https://www.engadget.com/amazon-is-reportedly-making-employees-relocate-for-return-to-office-200435517.html?src=rss Amazon is reportedly making employees relocate for return to officeSome Amazon employees will be forced to relocate to fulfill a company policy requiring three days per week of in office work according to sources speaking withBloomberg Those affected will include workers hired for remote positions and those who moved during peak pandemic days Remote Amazon workers will have to report to “main hub offices including company headquarters in Seattle New York and San Francisco and possibly other locations as The Wall Street Journalreported However decisions on who has to relocate and where will be decided on a departmental basis The company reportedly hasn t yet established how many employees will have to uproot themselves An Amazon representative told Bloomberg today that it observes “more energy collaboration and connections happening since implementing the in office mandate which CEO Andy Jassy announced in February Some of the company s workforce viewed the policy as adding insult to injury as it arrived around the same time as widespread layoffs starting in late that affected around employees Hundreds of workers staged a walkout in May protesting the return to office policy and the company s climate shortcomings “We continue to look at the best ways to bring more teams together in the same locations and we ll communicate directly with employees as we make decisions that affect them an Amazon spokesperson told Bloomberg This article originally appeared on Engadget at 2023-07-21 20:04:35
ニュース BBC News - Home New Greece heatwave warning as fires still burn https://www.bbc.co.uk/news/world-europe-66273287?at_medium=RSS&at_campaign=KARANGA greece 2023-07-21 20:53:25
ニュース BBC News - Home Gorilla thought to be male surprises zoo with birth https://www.bbc.co.uk/news/world-us-canada-66273598?at_medium=RSS&at_campaign=KARANGA newborn 2023-07-21 20:53:00
ニュース BBC News - Home Kipyegon shatters women's mile world record https://www.bbc.co.uk/sport/athletics/66272997?at_medium=RSS&at_campaign=KARANGA monaco 2023-07-21 20:25:51
ビジネス ダイヤモンド・オンライン - 新着記事 ツルハ、ウエルシア…ドラッグストア5社に業績格差、好調業界の「勝ち組2社」は?【見逃し配信・業界天気図】 - 見逃し配信 https://diamond.jp/articles/-/326521 配信 2023-07-22 06:00:00
ビジネス ダイヤモンド・オンライン - 新着記事 成長株「大化け候補」ランキング【5年後に伸びる80銘柄】3位メルカリ、1位は? - 日本再浮上&AIで激変! 5年後のシン・業界地図 https://diamond.jp/articles/-/325736 2023-07-22 05:25:00
ビジネス ダイヤモンド・オンライン - 新着記事 セブン&アイは大揺れ中…「コンビニ王者」はどこ?セブン、ファミマ、ローソン… - 【月次版】業界天気図 https://diamond.jp/articles/-/325987 セブンアイは大揺れ中…「コンビニ王者」はどこセブン、ファミマ、ローソン…【月次版】業界天気図新型コロナウイルスの感染症法上の位置付けが類に移行したことで、コロナ禍によって大打撃を受けた業界・企業の業績の完全復活に対する期待が高まってきた。 2023-07-22 05:20:00
ビジネス ダイヤモンド・オンライン - 新着記事 東大弁論部OBの三井住友トラスト社長が明かす、弁論で培った「社会人必須のスキル」 - 知られざるエリート人脈 大学弁論部の正体 https://diamond.jp/articles/-/326125 三井住友トラスト 2023-07-22 05:15:00
ビジネス ダイヤモンド・オンライン - 新着記事 タワマン「増税危険度」ランキング【神奈川59棟】4位シティタワー武蔵小杉、1位は? - タワマン節税 緊急事態 https://diamond.jp/articles/-/326064 タワマン「増税危険度」ランキング【神奈川棟】位シティタワー武蔵小杉、位はタワマン節税緊急事態マンションの評価改正の新ルールにより、来年から多くのタワマンで相続税評価額が上昇することは必至だ。 2023-07-22 05:10:00
ビジネス ダイヤモンド・オンライン - 新着記事 【スクープ】準大手監査法人の東陽と仰星が合併協議、生き残りを懸けた業界再編のトリガーに - Diamond Premium News https://diamond.jp/articles/-/326540 diamondpremiumnews 2023-07-22 05:05:00

コメント

このブログの人気の投稿

投稿時間:2021-06-17 05:05:34 RSSフィード2021-06-17 05:00 分まとめ(1274件)

投稿時間:2021-06-20 02:06:12 RSSフィード2021-06-20 02:00 分まとめ(3871件)

投稿時間:2020-12-01 09:41:49 RSSフィード2020-12-01 09:00 分まとめ(69件)